| 1 | <?php declare(strict_types = 1); |
||
| 17 | class InjectablePropertyConfigurator implements PropertyConfiguratorInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Convert to class property metadata. |
||
| 21 | * |
||
| 22 | * @param PropertyMetadata $propertyMetadata Input metadata |
||
| 23 | * |
||
| 24 | * @return PropertyMetadata Annotation conversion to metadata |
||
| 25 | * |
||
| 26 | * @throws TypeHintDoesNotExists |
||
| 27 | * @throws ClassDoesNotExists |
||
| 28 | * |
||
| 29 | */ |
||
| 30 | public function toPropertyMetadata(PropertyMetadata $propertyMetadata) |
||
| 42 | } |
||
| 43 |