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 ( 04fc1d...e0e4d2 )
by Sam
09:08
created
src/Command/WatchCommand.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 getCommandLine(): string
15 15
     {
16
-        return 'watch ' . $this->tube;
16
+        return 'watch '.$this->tube;
17 17
     }
18 18
 
19 19
     public function parseResponse(string $responseLine, ?string $responseData): ArrayResponse
Please login to merge, or discard this patch.
src/Command/PauseTubeCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
         } elseif ($responseLine == ResponseInterface::RESPONSE_PAUSED) {
50 50
             return $this->createResponse(ResponseInterface::RESPONSE_PAUSED);
51 51
         } else {
52
-            throw new Exception('Unhandled response: "' . $responseLine . '"');
52
+            throw new Exception('Unhandled response: "'.$responseLine.'"');
53 53
         }
54 54
     }
55 55
 }
Please login to merge, or discard this patch.
src/Command/KickCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 
27 27
     public function getCommandLine(): string
28 28
     {
29
-        return 'kick ' . $this->max;
29
+        return 'kick '.$this->max;
30 30
     }
31 31
 
32 32
     /* (non-phpdoc)
Please login to merge, or discard this patch.
src/Command/KickJobCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 {
24 24
     public function getCommandLine(): string
25 25
     {
26
-        return 'kick-job ' . $this->jobId;
26
+        return 'kick-job '.$this->jobId;
27 27
     }
28 28
 
29 29
     /* (non-phpdoc)
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
         } elseif ($responseLine == ResponseInterface::RESPONSE_KICKED) {
41 41
             return $this->createResponse(ResponseInterface::RESPONSE_KICKED);
42 42
         } else {
43
-            throw new Exception('Unhandled response: ' . $responseLine);
43
+            throw new Exception('Unhandled response: '.$responseLine);
44 44
         }
45 45
     }
46 46
 }
Please login to merge, or discard this patch.
src/Command/DeleteCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 {
17 17
     public function getCommandLine(): string
18 18
     {
19
-        return 'delete ' . $this->jobId;
19
+        return 'delete '.$this->jobId;
20 20
     }
21 21
 
22 22
     public function parseResponse(string $responseLine, ?string $responseData): ArrayResponse
Please login to merge, or discard this patch.
src/Connection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,10 +73,10 @@
 block discarded – undo
73 73
     {
74 74
         $socket = $this->getSocket();
75 75
 
76
-        $to_send = $command->getCommandLine() . self::CRLF;
76
+        $to_send = $command->getCommandLine().self::CRLF;
77 77
 
78 78
         if ($command->hasData()) {
79
-            $to_send .= $command->getData() . self::CRLF;
79
+            $to_send .= $command->getData().self::CRLF;
80 80
         }
81 81
 
82 82
         $socket->write($to_send);
Please login to merge, or discard this patch.
src/Command/IgnoreCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 {
18 18
     public function getCommandLine(): string
19 19
     {
20
-        return 'ignore ' . $this->tube;
20
+        return 'ignore '.$this->tube;
21 21
     }
22 22
 
23 23
     public function parseResponse(string $responseLine, ?string $responseData): ArrayResponse
@@ -28,10 +28,10 @@  discard block
 block discarded – undo
28 28
             ]);
29 29
         } elseif ($responseLine == ResponseInterface::RESPONSE_NOT_IGNORED) {
30 30
             throw new Exception\ServerException(
31
-                $responseLine . ': cannot ignore last tube in watchlist'
31
+                $responseLine.': cannot ignore last tube in watchlist'
32 32
             );
33 33
         } else {
34
-            throw new Exception('Unhandled response: ' . $responseLine);
34
+            throw new Exception('Unhandled response: '.$responseLine);
35 35
         }
36 36
     }
37 37
 }
Please login to merge, or discard this patch.
src/Command/BuryCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         } elseif ($responseLine == ResponseInterface::RESPONSE_BURIED) {
45 45
             return $this->createResponse(ResponseInterface::RESPONSE_BURIED);
46 46
         } else {
47
-            throw new Exception('Unhandled response: ' . $responseLine);
47
+            throw new Exception('Unhandled response: '.$responseLine);
48 48
         }
49 49
     }
50 50
 }
Please login to merge, or discard this patch.
src/Command/UseCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 {
19 19
     public function getCommandLine(): string
20 20
     {
21
-        return 'use ' . $this->tube;
21
+        return 'use '.$this->tube;
22 22
     }
23 23
 
24 24
     public function parseResponse(string $responseLine, ?string $responseData): ArrayResponse
Please login to merge, or discard this patch.