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 ( fa5ea9...9f0e53 )
by Julien
01:42
created
src/SyncService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
         $diffKeys = array_diff(array_keys($sourceValues), array_keys($destinationValues));
32 32
 
33
-        return array_filter($sourceValues, function ($key) use ($diffKeys) {
33
+        return array_filter($sourceValues, function($key) use ($diffKeys) {
34 34
             return in_array($key, $diffKeys);
35 35
         }, ARRAY_FILTER_USE_KEY);
36 36
     }
Please login to merge, or discard this patch.
src/FileNotFound.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,4 +7,4 @@
 block discarded – undo
7 7
 
8 8
 namespace Jtant\LaravelEnvSync;
9 9
 
10
-class FileNotFound extends \Exception{}
10
+class FileNotFound extends \Exception {}
Please login to merge, or discard this patch.