| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 45 | 6 | public function __construct(PagerInterface $pager, ObjectPersisterInterface $objectPersister, int $objectsCount, ?string $errorMessage, array $options) |
|
| 46 | { |
||
| 47 | 6 | $this->pager = $pager; |
|
| 48 | 6 | $this->objectPersister = $objectPersister; |
|
| 49 | 6 | $this->objectsCount = $objectsCount; |
|
| 50 | 6 | $this->errorMessage = $errorMessage; |
|
| 51 | 6 | $this->options = $options; |
|
| 52 | 6 | } |
|
| 53 | |||
| 79 |