| Conditions | 2 |
| Paths | 2 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 2.0625 |
| Changes | 0 | ||
| 1 | <?php |
||
| 46 | 1 | public function getItem(string $resourceClass, $id, string $operationName = null, array $context = []): ?Layout |
|
| 47 | { |
||
| 48 | 1 | if ($id !== 'default') { |
|
| 49 | throw new ResourceClassNotSupportedException('LayoutDataProvider only supports the id `default`'); |
||
| 50 | } |
||
| 51 | 1 | return $this->repository->findOneBy(['default' => true]); |
|
| 52 | } |
||
| 54 |