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.
Passed
Branch master (a93cc2)
by Gabor
02:50
created
Category
src/GenerateCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@
 block discarded – undo
20 20
         $translations = json_decode($jsonFile, true);
21 21
 
22 22
         foreach ($translatables as $translatable) {
23
-            $translatable = str_replace('\\','', $translatable);
24
-            if(!array_key_exists($translatable, $translations))
23
+            $translatable = str_replace('\\', '', $translatable);
24
+            if (!array_key_exists($translatable, $translations))
25 25
             {
26 26
                 $translations[$translatable] = $translatable;
27 27
             }
Please login to merge, or discard this patch.
src/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     public function boot()
29 29
     {
30 30
         $this->publishes([
31
-            __DIR__.'/../config/translation.php' => config_path('translation.php'),
31
+            __DIR__ . '/../config/translation.php' => config_path('translation.php'),
32 32
         ]);
33 33
     }
34 34
 }
35 35
\ No newline at end of file
Please login to merge, or discard this patch.
src/ShowUntranslatedCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     {
15 15
         $lang = $this->argument('lang');
16 16
         
17
-        if(! file_exists('resources/lang/'. $lang . '.json')) {
17
+        if (!file_exists('resources/lang/' . $lang . '.json')) {
18 18
             $this->error($lang . '.json doesn\'t exist');
19 19
             return;
20 20
         }
@@ -22,9 +22,9 @@  discard block
 block discarded – undo
22 22
         $jsonFile = file_get_contents('resources/lang/' . $lang . '.json');
23 23
 
24 24
         $count = collect(json_decode($jsonFile, true))
25
-                    ->filter(function($value, $key){
25
+                    ->filter(function($value, $key) {
26 26
                         return $key === $value;
27
-                    })->each(function($value){
27
+                    })->each(function($value) {
28 28
                         $this->line($value);
29 29
                     })->count();
30 30
 
Please login to merge, or discard this patch.