Test Failed
Pull Request — master (#3)
by
unknown
11:55
created
src/Queues/BatchQueue.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
             'jobId' => $jobId,
95 95
         ];
96 96
 
97
-        if(!empty($data->connection)){
97
+        if (!empty($data->connection)) {
98 98
             // $data->connection seems to have been made optional in newer Laravel versions
99 99
             $parameters['connectionId'] = $data->connection;
100 100
         }
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
 
168 168
     public function pop($queue = null)
169 169
     {
170
-        throw new UnsupportedException('The BatchQueue does not support running via a regular worker. ' .
170
+        throw new UnsupportedException('The BatchQueue does not support running via a regular worker. '.
171 171
             'Instead, you should use the queue:work-batch command with a job id.');
172 172
     }
173 173
 
Please login to merge, or discard this patch.