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