| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class MockPlugin implements ApiResourceFactoryProviderInterface, ApieAwareInterface |
||
| 13 | { |
||
| 14 | use ApieAwareTrait; |
||
| 15 | |||
| 16 | private $ignoreList = []; |
||
| 17 | |||
| 18 | public function __construct(array $ignoreList = []) |
||
| 19 | { |
||
| 20 | $this->ignoreList = $ignoreList; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getApiResourceFactory(array $next = []): ApiResourceFactoryInterface |
||
| 35 | ); |
||
| 36 | } |
||
| 38 |