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
Push — master ( 486081...cf5c47 )
by Jonathan
03:38
created
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/Http/Controllers/AdController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
 
87 87
         if (count($publishedPlatforms) > 0) {
88 88
             try {
89
-                $publishedPlatforms->each(function ($platform) use ($ad) {
89
+                $publishedPlatforms->each(function($platform) use ($ad) {
90 90
                     $platformHelper = $this->getHelperClassFromPlatform($platform);
91 91
                     $platformHelper->unpublish($ad, $platform);
92 92
                     $ad->platforms()->detach($platform->id);
Please login to merge, or discard this patch.
tests/CreatesApplication.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function createApplication()
15 15
     {
16
-        $app = require __DIR__.'/../bootstrap/app.php';
16
+        $app = require __DIR__ . '/../bootstrap/app.php';
17 17
 
18 18
         $app->make(Kernel::class)->bootstrap();
19 19
 
Please login to merge, or discard this patch.
app/Platforms/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.
tests/Browser/AdTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function testAddNewAd()
31 31
     {
32
-        $this->browse(function (Browser $browser) {
32
+        $this->browse(function(Browser $browser) {
33 33
             $browser->visit('/ads')
34 34
                 ->clickLink('Ajouter')
35 35
                 ->type('title', 'Testing title ' . $this->uniqueId)
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     {
54 54
         $ad = Ad::create($this->testingValues);
55 55
 
56
-        $this->browse(function (Browser $browser) use ($ad) {
56
+        $this->browse(function(Browser $browser) use ($ad) {
57 57
             $browser->visit('/ads/' . $ad->id)
58 58
                 ->type('price', 343.34)
59 59
                 ->press('Éditer')
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     {
74 74
         $ad = Ad::create($this->testingValues);
75 75
 
76
-        $this->browse(function (Browser $browser) use ($ad) {
76
+        $this->browse(function(Browser $browser) use ($ad) {
77 77
             $browser->visit('/ads/' . $ad->id)
78 78
                 ->type('price', 'abc')
79 79
                 ->press('Éditer')
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     {
94 94
         $ad = Ad::create($this->testingValues);
95 95
 
96
-        $this->browse(function (Browser $browser) use ($ad) {
96
+        $this->browse(function(Browser $browser) use ($ad) {
97 97
             $browser->visit('/ads/' . $ad->id . '/delete')
98 98
                 ->assertDontSee('Testing title ' . $this->uniqueId);
99 99
         });
Please login to merge, or discard this patch.