Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
16 | 1 | public function __construct(Repository $repository, array $conditions = [], $with = [], array $config = []) |
|
17 | { |
||
18 | 1 | $this->repository = $repository; |
|
19 | 1 | $this->conditions = $conditions; |
|
20 | 1 | $this->with = $with; |
|
21 | 1 | parent::__construct($config); |
|
22 | 1 | } |
|
23 | |||
55 |