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