Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
36 | 5 | public function __construct(PagerInterface $pager, ObjectPersisterInterface $objectPersister, int $objectsCount, ?string $errorMessage, array $options) |
|
37 | { |
||
38 | 5 | $this->pager = $pager; |
|
39 | 5 | $this->objectPersister = $objectPersister; |
|
40 | 5 | $this->objectsCount = $objectsCount; |
|
41 | 5 | $this->errorMessage = $errorMessage; |
|
42 | 5 | $this->options = $options; |
|
43 | 5 | } |
|
44 | |||
70 |