GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 90941d...be0025 )
by Rob
02:28
created
tests/TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,6 +15,6 @@
 block discarded – undo
15 15
      */
16 16
     protected function getPackageProviders($app)
17 17
     {
18
-        return [SafeUrlsServiceProvider::class];
18
+        return [ SafeUrlsServiceProvider::class ];
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
src/Libraries/Config/Config.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     public static function threatTypes(): array
62 62
     {
63 63
         $threatTypes = config('safe-urls.google.threat_types');
64
-        return !empty($threatTypes) ? $threatTypes : [];
64
+        return !empty($threatTypes) ? $threatTypes : [ ];
65 65
 
66 66
     }
67 67
 
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     public static function platformTypes(): array
74 74
     {
75 75
         $platformTypes = config('safe-urls.google.threat_platform_types');
76
-        return !empty($platformTypes) ? $platformTypes : [];
76
+        return !empty($platformTypes) ? $platformTypes : [ ];
77 77
 
78 78
     }
79 79
 
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
     public static function threatEntryTypes(): array
86 86
     {
87 87
         $threatEntryTypes = config('safe-urls.google.threat_entry_types');
88
-        return !empty($threatEntryTypes) ? $threatEntryTypes : [self::DEFAULT_THREAT_ENTRY_TYPE];
88
+        return !empty($threatEntryTypes) ? $threatEntryTypes : [ self::DEFAULT_THREAT_ENTRY_TYPE ];
89 89
     }
90 90
 
91 91
     /**
Please login to merge, or discard this patch.