Completed
Push — master ( 7cdf63...105f03 )
by Sam
04:17
created
src/Pheanstalk.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
      */
109 109
     public function listTubes(): array
110 110
     {
111
-        return (array)$this->dispatch(
111
+        return (array) $this->dispatch(
112 112
             new Command\ListTubesCommand()
113 113
         );
114 114
     }
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
     public function listTubesWatched(bool $askServer = false): array
120 120
     {
121 121
         if ($askServer) {
122
-            $response = (array)$this->dispatch(
122
+            $response = (array) $this->dispatch(
123 123
                 new Command\ListTubesWatchedCommand()
124 124
             );
125 125
             $this->watching = array_fill_keys($response, true);
Please login to merge, or discard this patch.