-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathConnectionService.php
More file actions
35 lines (32 loc) · 907 Bytes
/
ConnectionService.php
File metadata and controls
35 lines (32 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
declare(strict_types=1);
namespace Ragnarok\Fenrir\Enums;
enum ConnectionService: string
{
case AmazonMusic = 'amazon-music';
case BattleNet = 'battlenet';
case Bungie = 'bungie';
case Bluesky = 'bluesky';
case Crunchyroll = 'crunchyroll';
case Domain = 'domain';
case Ebay = 'ebay';
case EpicGames = 'epicgames';
case Facebook = 'facebook';
case GitHub = 'github';
case Instagram = 'instagram';
case LeagueOfLegends = 'leagueoflegends';
case Mastodon = 'mastodon';
case PayPal = 'paypal';
case PlayStation = 'playstation';
case Reddit = 'reddit';
case RiotGames = 'riotgames';
case Roblox = 'roblox';
case Spotify = 'spotify';
case Skype = 'skype';
case Steam = 'steam';
case TikTok = 'tiktok';
case Twitch = 'twitch';
case Twitter = 'twitter';
case Xbox = 'xbox';
case YouTube = 'youtube';
}