Passed
Push — master ( ceb2be...b3c65f )
by Sam
03:44
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/IgnoreCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 {
16 16
     public function getCommandLine(): string
17 17
     {
18
-        return 'ignore ' . $this->tube;
18
+        return 'ignore '.$this->tube;
19 19
     }
20 20
 
21 21
     public function parseResponse(string $responseLine, ?string $responseData): ArrayResponse
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.