Passed
Push — master ( e3ad72...7cdf63 )
by Sam
04:46 queued 02:15
created
src/Pheanstalk.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      */
103 103
     public function listTubes(): array
104 104
     {
105
-        return (array)$this->dispatch(
105
+        return (array) $this->dispatch(
106 106
             new Command\ListTubesCommand()
107 107
         );
108 108
     }
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     public function listTubesWatched(bool $askServer = false): array
114 114
     {
115 115
         if ($askServer) {
116
-            $response = (array)$this->dispatch(
116
+            $response = (array) $this->dispatch(
117 117
                 new Command\ListTubesWatchedCommand()
118 118
             );
119 119
             $this->_watching = array_fill_keys($response, true);
Please login to merge, or discard this patch.