| Total Complexity | 3 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class PropertyCollectionProcessor implements PropertyProcessorInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @param PropertyDefinition $propertyDefinition |
||
| 25 | * @param ClassDefinition $classDefinition |
||
| 26 | * @param array<string, mixed> $propertyData |
||
| 27 | * @param array<string> $classList |
||
| 28 | * |
||
| 29 | * @return void |
||
| 30 | */ |
||
| 31 | 1 | public function process(PropertyDefinition $propertyDefinition, ClassDefinition $classDefinition, array $propertyData, array $classList): void |
|
| 54 |