Code Duplication    Length = 3-3 lines in 2 locations

RabbitMQ/JobManager.php 1 location

@@ 213-215 (lines=3) @@
210
     */
211
    protected function verifyGetJobArgs($workerName = null, $methodName = null, $prioritize = true)
212
    {
213
        if (null !== $workerName || null !== $methodName || (null !== $this->maxPriority && true !== $prioritize)) {
214
            throw new UnsupportedException('Unsupported');
215
        }
216
    }
217
218
    /**

Redis/JobManager.php 1 location

@@ 336-338 (lines=3) @@
333
     */
334
    protected function verifyGetJobArgs($workerName = null, $methodName = null, $prioritize = true)
335
    {
336
        if (null !== $workerName || null !== $methodName || (null !== $this->maxPriority && true !== $prioritize)) {
337
            throw new UnsupportedException('Unsupported');
338
        }
339
    }
340
341
    public function deleteJob(\Dtc\QueueBundle\Model\Job $job)