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 (edff7d)
by Jonathan
07:23 queued 18s
created
app/Providers/RouteServiceProvider.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
     protected function mapWebRoutes()
53 53
     {
54 54
         Route::middleware('web')
55
-             ->namespace($this->namespace)
56
-             ->group(base_path('routes/web.php'));
55
+                ->namespace($this->namespace)
56
+                ->group(base_path('routes/web.php'));
57 57
     }
58 58
 
59 59
     /**
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
     protected function mapApiRoutes()
67 67
     {
68 68
         Route::prefix('api')
69
-             ->middleware('api')
70
-             ->namespace($this->namespace)
71
-             ->group(base_path('routes/api.php'));
69
+                ->middleware('api')
70
+                ->namespace($this->namespace)
71
+                ->group(base_path('routes/api.php'));
72 72
     }
73 73
 }
Please login to merge, or discard this patch.
app/Console/Kernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      */
36 36
     protected function commands()
37 37
     {
38
-        $this->load(__DIR__.'/Commands');
38
+        $this->load(__DIR__ . '/Commands');
39 39
 
40 40
         require base_path('routes/console.php');
41 41
     }
Please login to merge, or discard this patch.
app/Platforms/Petitesannonces/Petitesannonces.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
         $crawler = Goutte::submit($form, $adParameters);
75 75
 
76 76
         $errors = [];
77
-        $crawler->filter('.fem.fieldwarning')->each(function ($node) use (&$errors) {
77
+        $crawler->filter('.fem.fieldwarning')->each(function($node) use (&$errors) {
78 78
             $errors[] = $node->text();
79 79
         });
80 80
 
Please login to merge, or discard this patch.
app/Http/Controllers/AdController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
 
88 88
         if ($publishedAds) {
89 89
             try {
90
-                $publishedAds->each(function ($platform) use ($ad) {
90
+                $publishedAds->each(function($platform) use ($ad) {
91 91
                     $platformHelper = $this->getHelperClassFromPlatform($platform);
92 92
                     $platformHelper->unpublish($ad, $platform);
93 93
                     $ad->platforms()->detach($platform->id);
Please login to merge, or discard this patch.