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 (1cd82a)
by Steven
03:15
created
src/HtpasswdManager/Test/HtpasswdServiceTest.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
         $userList = $service->getUserList();
59 59
         $this->assertEquals(
60 60
             $expected = [ 'steven' => '$apr1$UF1l/6iv$tT3IJUH.QL82HAraXetNo0',
61
-                          'blub'   => '$apr1$jVosh5nC$q6KJ5EZNU6thOPETMQw8O/'
61
+                            'blub'   => '$apr1$jVosh5nC$q6KJ5EZNU6thOPETMQw8O/'
62 62
             ], $userList, "UserList");
63 63
     }
64 64
 
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
         $service = new HtpasswdService($testFile);
44 44
 
45 45
         $userList = $service->getUserList();
46
-        $this->assertEquals($expected = [ ], $userList, "UserList");
46
+        $this->assertEquals($expected = [], $userList, "UserList");
47 47
 
48 48
         // Cleanup
49 49
         unlink($testFile);
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
         $userList = $service->getUserList();
59 59
         $this->assertEquals(
60
-            $expected = [ 'steven' => '$apr1$UF1l/6iv$tT3IJUH.QL82HAraXetNo0',
60
+            $expected = ['steven' => '$apr1$UF1l/6iv$tT3IJUH.QL82HAraXetNo0',
61 61
                           'blub'   => '$apr1$jVosh5nC$q6KJ5EZNU6thOPETMQw8O/'
62 62
             ], $userList, "UserList");
63 63
     }
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 
86 86
         $userList = $service->getUserList();
87 87
         $this->assertCount(3, $userList);
88
-        $this->assertEquals($expected = [ 'steven', 'blub', 'test' ],
88
+        $this->assertEquals($expected = ['steven', 'blub', 'test'],
89 89
             array_keys($userList));
90 90
         $this->assertEquals(3, $this->getNumberOfLines($testFile), "Number of Lines");
91 91
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
         $service->deleteUser('steven');
118 118
         $userList = $service->getUserList();
119 119
         $this->assertCount(1, $userList);
120
-        $this->assertEquals($expected = [ 'blub' ],
120
+        $this->assertEquals($expected = ['blub'],
121 121
             array_keys($userList));
122 122
         $this->assertEquals(1, $this->getNumberOfLines($testFile), "Number of Lines");
123 123
 
Please login to merge, or discard this patch.