Total Complexity | 4 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
26 | class ComponentPropertyMetadataFactory implements PropertyMetadataFactoryInterface |
||
27 | { |
||
28 | private PropertyMetadataFactoryInterface $decorated; |
||
29 | |||
30 | public function __construct(PropertyMetadataFactoryInterface $decorated) |
||
31 | { |
||
32 | $this->decorated = $decorated; |
||
33 | } |
||
34 | |||
35 | public function create(string $resourceClass, string $property, array $options = []): PropertyMetadata |
||
43 | } |
||
44 | } |
||
45 |