diff --git a/Network/Google.php b/Network/Google.php index cca3d8e..a580d65 100644 --- a/Network/Google.php +++ b/Network/Google.php @@ -8,7 +8,7 @@ class Google extends AbstractNetwork protected $name = 'Google+'; /** @var string $icon */ - protected $icon = 'fab google-plus-g'; + protected $icon = 'fab fa-google-plus-g'; /** @var string $backgroundColor */ protected $backgroundColor = 'rgb(234, 66, 53)'; diff --git a/tests/Network/DiscordChatTest.php b/tests/Network/DiscordChatTest.php index 7b3c055..e517334 100644 --- a/tests/Network/DiscordChatTest.php +++ b/tests/Network/DiscordChatTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-discord', (new DiscordChat())->getIcon()); + $this->assertEquals('fab fa-discord', (new DiscordChat())->getIcon()); } public function testDetectorPriority(): void diff --git a/tests/Network/FacebookEventTest.php b/tests/Network/FacebookEventTest.php index 1cb461f..a4d0b2e 100644 --- a/tests/Network/FacebookEventTest.php +++ b/tests/Network/FacebookEventTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-facebook', (new FacebookEvent())->getIcon()); + $this->assertEquals('fab fa-facebook-f', (new FacebookEvent())->getIcon()); } public function testDetectorPriority(): void diff --git a/tests/Network/FacebookGroupTest.php b/tests/Network/FacebookGroupTest.php index f4fbb4f..c5a304c 100644 --- a/tests/Network/FacebookGroupTest.php +++ b/tests/Network/FacebookGroupTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-facebook', (new FacebookGroup())->getIcon()); + $this->assertEquals('fab fa-facebook-f', (new FacebookGroup())->getIcon()); } public function testDetectorPriority(): void diff --git a/tests/Network/FacebookPageTest.php b/tests/Network/FacebookPageTest.php index e25ba01..44dbdc5 100644 --- a/tests/Network/FacebookPageTest.php +++ b/tests/Network/FacebookPageTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-facebook', (new FacebookPage())->getIcon()); + $this->assertEquals('fab fa-facebook-f', (new FacebookPage())->getIcon()); } public function testDetectorPriority(): void diff --git a/tests/Network/FacebookProfileTest.php b/tests/Network/FacebookProfileTest.php index 8339cb9..ca6662c 100644 --- a/tests/Network/FacebookProfileTest.php +++ b/tests/Network/FacebookProfileTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-facebook', (new FacebookProfile())->getIcon()); + $this->assertEquals('fab fa-facebook-f', (new FacebookProfile())->getIcon()); } public function testDetectorPriority(): void diff --git a/tests/Network/FlickrTest.php b/tests/Network/FlickrTest.php index 1cbec70..22771ad 100644 --- a/tests/Network/FlickrTest.php +++ b/tests/Network/FlickrTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-flickr', (new Flickr())->getIcon()); + $this->assertEquals('fab fa-flickr', (new Flickr())->getIcon()); } public function testDetectorPriority(): void diff --git a/tests/Network/GoogleTest.php b/tests/Network/GoogleTest.php index 9f269d2..4d76410 100644 --- a/tests/Network/GoogleTest.php +++ b/tests/Network/GoogleTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-google-plus', (new Google())->getIcon()); + $this->assertEquals('fab fa-google-plus-g', (new Google())->getIcon()); } public function testDetectorPriority(): void diff --git a/tests/Network/HomepageTest.php b/tests/Network/HomepageTest.php index 71a0246..393dc73 100644 --- a/tests/Network/HomepageTest.php +++ b/tests/Network/HomepageTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-globe', (new Homepage())->getIcon()); + $this->assertEquals('far fa-home', (new Homepage())->getIcon()); } public function testDetectorPriority(): void diff --git a/tests/Network/InstagramPhotoTest.php b/tests/Network/InstagramPhotoTest.php index 82e9fd9..26d1370 100644 --- a/tests/Network/InstagramPhotoTest.php +++ b/tests/Network/InstagramPhotoTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-instagram', (new InstagramPhoto())->getIcon()); + $this->assertEquals('fab fa-instagram', (new InstagramPhoto())->getIcon()); } public function testDetectorPriority(): void diff --git a/tests/Network/InstagramProfileTest.php b/tests/Network/InstagramProfileTest.php index 847ccea..809a27c 100644 --- a/tests/Network/InstagramProfileTest.php +++ b/tests/Network/InstagramProfileTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-instagram', (new InstagramProfile())->getIcon()); + $this->assertEquals('fab fa-instagram', (new InstagramProfile())->getIcon()); } public function testDetectorPriority(): void diff --git a/tests/Network/TelegramChatTest.php b/tests/Network/TelegramChatTest.php index 5e780eb..d7de021 100644 --- a/tests/Network/TelegramChatTest.php +++ b/tests/Network/TelegramChatTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-telegram', (new TelegramChat())->getIcon()); + $this->assertEquals('fab fa-telegram-plane', (new TelegramChat())->getIcon()); } public function testDetectorPriority(): void diff --git a/tests/Network/TumblrTest.php b/tests/Network/TumblrTest.php index f9f0ddc..177a879 100644 --- a/tests/Network/TumblrTest.php +++ b/tests/Network/TumblrTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-tumblr', (new Tumblr())->getIcon()); + $this->assertEquals('fab fa-tumblr', (new Tumblr())->getIcon()); } public function testDetectorPriority(): void diff --git a/tests/Network/TwitterTest.php b/tests/Network/TwitterTest.php index 23f096d..17269e7 100644 --- a/tests/Network/TwitterTest.php +++ b/tests/Network/TwitterTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-twitter', (new Twitter())->getIcon()); + $this->assertEquals('fab fa-twitter', (new Twitter())->getIcon()); } public function testDetectorPriority(): void diff --git a/tests/Network/WhatsappChatTest.php b/tests/Network/WhatsappChatTest.php index d9b4563..f2f2211 100644 --- a/tests/Network/WhatsappChatTest.php +++ b/tests/Network/WhatsappChatTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-whatsapp', (new WhatsappChat())->getIcon()); + $this->assertEquals('fab fa-whatsapp', (new WhatsappChat())->getIcon()); } public function testDetectorPriority(): void diff --git a/tests/Network/YoutubeChannelTest.php b/tests/Network/YoutubeChannelTest.php index a010a48..b9014fb 100644 --- a/tests/Network/YoutubeChannelTest.php +++ b/tests/Network/YoutubeChannelTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-youtube', (new YoutubeChannel())->getIcon()); + $this->assertEquals('fab fa-youtube', (new YoutubeChannel())->getIcon()); } public function testDetectorPriority(): void diff --git a/tests/Network/YoutubePlaylistTest.php b/tests/Network/YoutubePlaylistTest.php index a55d0e6..3dc12a7 100644 --- a/tests/Network/YoutubePlaylistTest.php +++ b/tests/Network/YoutubePlaylistTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-youtube', (new YoutubePlaylist())->getIcon()); + $this->assertEquals('fab fa-youtube', (new YoutubePlaylist())->getIcon()); } public function testDetectorPriority(): void diff --git a/tests/Network/YoutubeUserTest.php b/tests/Network/YoutubeUserTest.php index e770702..8125b8a 100644 --- a/tests/Network/YoutubeUserTest.php +++ b/tests/Network/YoutubeUserTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-youtube', (new YoutubeUser())->getIcon()); + $this->assertEquals('fab fa-youtube', (new YoutubeUser())->getIcon()); } public function testDetectorPriority(): void diff --git a/tests/Network/YoutubeVideoTest.php b/tests/Network/YoutubeVideoTest.php index c30d46e..3108333 100644 --- a/tests/Network/YoutubeVideoTest.php +++ b/tests/Network/YoutubeVideoTest.php @@ -29,7 +29,7 @@ public function testTextColor(): void public function testIcon(): void { - $this->assertEquals('fa-youtube', (new YoutubeVideo())->getIcon()); + $this->assertEquals('fab fa-youtube', (new YoutubeVideo())->getIcon()); } public function testDetectorPriority(): void