| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 1 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | 3 | public function process(PropertyDefinition $propertyDefinition, ClassDefinition $classDefinition, array $propertyData, array $classList): void |
|
| 23 | { |
||
| 24 | 3 | $required = 'true' === mb_strtolower($propertyData[PreparationProcessorInterface::PROP_REQUIRED] ?? 'false'); |
|
| 25 | |||
| 26 | 3 | $propertyDefinition->setIsRequired($required); |
|
| 27 | } |
||
| 29 |