Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function __construct(Job $job, Queue $queue, Stopwatch $stopwatch) |
||
14 | { |
||
15 | $this->data = [ |
||
16 | 'delay' => $job->getDelay(), |
||
17 | 'retries' => $job->getRetries(), |
||
18 | 'maxRetries' => $job->getMaxRetries(), |
||
19 | 'queueName' => (string) $queue, |
||
20 | 'preferredQueue' => $job->getPreferredQueueName(), |
||
21 | 'executionTime' => $stopwatch->elapsed(), |
||
22 | ]; |
||
23 | } |
||
24 | |||
32 | } |