Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
32 | 2 | public function __construct(PagerInterface $pager, ObjectPersisterInterface $objectPersister, \Exception $exception, array $options) |
|
33 | { |
||
34 | 2 | $this->pager = $pager; |
|
35 | 2 | $this->objectPersister = $objectPersister; |
|
36 | 2 | $this->exception = $exception; |
|
37 | 2 | $this->options = $options; |
|
38 | |||
39 | 2 | $this->ignore = false; |
|
40 | 2 | } |
|
41 | |||
97 | } |