Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
27 | final class PublishableLoader implements LoaderInterface |
||
28 | { |
||
29 | private Reader $reader; |
||
30 | |||
31 | public function __construct(Reader $reader) |
||
32 | { |
||
33 | $this->reader = $reader; |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function loadClassMetadata(ClassMetadataInterface $classMetadata) |
||
53 | } |
||
54 | } |
||
55 |