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 — rewrite-laravel ( cc2f1b...895994 )
by Oliver
07:03
created
tests/Api/CheckGuidTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 {
14 14
     public function testCorrectGuidLogin()
15 15
     {
16
-        $this->get('/services.php?check_guid&guid=' . $this->guid)
16
+        $this->get('/services.php?check_guid&guid='.$this->guid)
17 17
             ->see(Constants::$operation_succeded)
18 18
             ->seeHeader('Content-Type', 'text/plain; charset=UTF-8')
19 19
             ->assertResponseOk(200);
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     {
24 24
         $incorrectGuid = '{DE43-D62C-A609-UIFSDDFUISF}';
25 25
 
26
-        $this->get('/services.php?check_guid&guid=' . $incorrectGuid)
26
+        $this->get('/services.php?check_guid&guid='.$incorrectGuid)
27 27
             ->see(Constants::$wrong_guid)
28 28
             ->seeHeader('Content-Type', 'text/plain; charset=UTF-8')
29 29
             ->assertResponseOk(200); // need to be 200 cause client otherwise crash..
Please login to merge, or discard this patch.