| Conditions | 3 |
| Paths | 4 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 35 | 52 | public function postConfigure(AttributeForm $form, FormInterface $inner): void |
|
| 36 | { |
||
| 37 | 52 | foreach ($this->elementProperties as $name => $reflection) { |
|
| 38 | 44 | $reflection->setValue($form, $inner[$name]->element()); |
|
| 39 | } |
||
| 40 | |||
| 41 | 52 | foreach ($this->buttonProperties as $name => $reflection) { |
|
| 42 | 3 | $reflection->setValue($form, $form->root()->button($name)); |
|
| 43 | } |
||
| 46 |