Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
53 | 18 | private function prepare($job, $arguments, array $extra) : Job |
|
54 | { |
||
55 | 18 | if ($arguments instanceof Request) { |
|
56 | 6 | return $this->marshal($job, $arguments, $extra); |
|
57 | } |
||
58 | |||
59 | 12 | if (! \is_object($job)) { |
|
60 | 6 | return $this->marshal($job, new Collection($arguments), $extra); |
|
61 | } |
||
62 | |||
63 | 6 | return $job; |
|
64 | } |
||
66 |