Code Duplication    Length = 3-3 lines in 2 locations

RabbitMQ/JobManager.php 1 location

@@ 221-223 (lines=3) @@
218
     */
219
    protected function verifyGetJobArgs($workerName = null, $methodName = null, $prioritize = true)
220
    {
221
        if (null !== $workerName || null !== $methodName || (null !== $this->maxPriority && true !== $prioritize)) {
222
            throw new UnsupportedException('Unsupported');
223
        }
224
    }
225
226
    /**

Redis/JobManager.php 1 location

@@ 293-295 (lines=3) @@
290
291
    protected function verifyGetJobArgs($workerName = null, $methodName = null, $prioritize = true)
292
    {
293
        if (null !== $workerName || null !== $methodName || (null !== $this->maxPriority && true !== $prioritize)) {
294
            throw new UnsupportedException('Unsupported');
295
        }
296
    }
297
298
    public function deleteJob(Job $job)