Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
43 | public function __construct( |
||
44 | MockApiResourceDataLayer $dataLayer, |
||
45 | array $idList, |
||
46 | array $searches, |
||
47 | string $resourceClass, |
||
48 | array $context, |
||
49 | ObjectAccessInterface $propertyAccessor |
||
50 | ) { |
||
51 | $this->dataLayer = $dataLayer; |
||
52 | $this->idList = $idList; |
||
53 | $this->searches = $searches; |
||
54 | $this->resourceClass = $resourceClass; |
||
55 | $this->context = $context; |
||
56 | $this->propertyAccessor = $propertyAccessor; |
||
57 | } |
||
80 |