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
Pull Request — master (#5)
by Glenn
03:33 queued 01:39
created
tests/src/Parser/JsonFileParserTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     {
19 19
         $parser = new JsonFileParser();
20 20
 
21
-        $path = __DIR__.'/../../fixtures/parser/valid.json';
21
+        $path = __DIR__ . '/../../fixtures/parser/valid.json';
22 22
 
23 23
         $expected = [
24 24
             'name' => 'Glenn',
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 
46 46
         $parser = new JsonFileParser();
47 47
 
48
-        $path = __DIR__.'/../../fixtures/parser/invalid_single-quotes.json';
48
+        $path = __DIR__ . '/../../fixtures/parser/invalid_single-quotes.json';
49 49
 
50 50
         $parser->parse($path);
51 51
     }
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
         $parser = new JsonFileParser();
63 63
 
64
-        $path = __DIR__.'/../../fixtures/parser/invalid_trailing-comma.json';
64
+        $path = __DIR__ . '/../../fixtures/parser/invalid_trailing-comma.json';
65 65
 
66 66
         $parser->parse($path);
67 67
     }
Please login to merge, or discard this patch.
tests/src/Parser/JsonParserTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
             ],
28 28
         ];
29 29
 
30
-        $data = file_get_contents(__DIR__.'/../../fixtures/parser/valid.json');
30
+        $data = file_get_contents(__DIR__ . '/../../fixtures/parser/valid.json');
31 31
 
32 32
         $json = $parser->parse($data);
33 33
 
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 
46 46
         $parser = new JsonParser();
47 47
 
48
-        $data = file_get_contents(__DIR__.'/../../fixtures/parser/invalid_single-quotes.json');
48
+        $data = file_get_contents(__DIR__ . '/../../fixtures/parser/invalid_single-quotes.json');
49 49
 
50 50
         $parser->parse($data);
51 51
     }
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
         $parser = new JsonParser();
63 63
 
64
-        $data = file_get_contents(__DIR__.'/../../fixtures/parser/invalid_trailing-comma.json');
64
+        $data = file_get_contents(__DIR__ . '/../../fixtures/parser/invalid_trailing-comma.json');
65 65
 
66 66
         $parser->parse($data);
67 67
     }
Please login to merge, or discard this patch.