Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
40 | 11 | public function __construct( |
|
41 | PagerInterface $pager, |
||
42 | ObjectPersisterInterface $objectPersister, |
||
43 | \Exception $exception, |
||
44 | array $objects, |
||
45 | array $options |
||
46 | ) { |
||
47 | 11 | $this->pager = $pager; |
|
48 | 11 | $this->objectPersister = $objectPersister; |
|
49 | 11 | $this->exception = $exception; |
|
50 | 11 | $this->options = $options; |
|
51 | |||
52 | 11 | $this->ignore = false; |
|
53 | 11 | $this->objects = $objects; |
|
54 | 11 | } |
|
55 | |||
119 | } |