Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | public function getApiResourceFactory(array $next = []): ApiResourceFactoryInterface |
||
24 | { |
||
25 | $apie = $this->getApie(); |
||
26 | |||
27 | return new MockApiResourceFactory( |
||
28 | new MockApiResourceDataLayer( |
||
29 | $this->getApie()->getCacheItemPool(), |
||
30 | $this->getApie()->getIdentifierExtractor(), |
||
31 | $this->getApie()->getPropertyAccessor() |
||
32 | ), |
||
33 | $apie, |
||
34 | $this->ignoreList |
||
35 | ); |
||
38 |