Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | final class UploadableLoader implements LoaderInterface |
||
27 | { |
||
28 | private UploadableAnnotationReader $uploadsHelper; |
||
29 | |||
30 | public function __construct(UploadableAnnotationReader $uploadsHelper) |
||
31 | { |
||
32 | $this->uploadsHelper = $uploadsHelper; |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function loadClassMetadata(ClassMetadata $metadata): bool |
||
51 | } |
||
52 | } |
||
53 |