| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 8 | ||
| Bugs | 1 | Features | 3 |
| 1 | <?php |
||
| 63 | public function applyConfiguration( |
||
| 64 | Configurator $configurator |
||
| 65 | ) { |
||
| 66 | $this->allowed = $configurator->allowed(); |
||
| 67 | $this->mandatory = $configurator->mandatory(); |
||
| 68 | $this->defaults = $configurator->defaults(); |
||
| 69 | $this->rules = $configurator->rules(); |
||
| 70 | $this->allowedValues = $configurator->allowedValues(); |
||
| 71 | $this->rewrites = $configurator->rewrites(); |
||
| 72 | } |
||
| 73 | } |
||
| 74 |