| 1 | <?php |
||
| 16 | class ConfigurationState |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var bool |
||
| 20 | */ |
||
| 21 | protected $isFrozen = false; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return bool |
||
| 25 | */ |
||
| 26 | public function isFrozen() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Marks the configuration as frozen, meaning recursive properties cannot be |
||
| 33 | * edited anymore. |
||
| 34 | * |
||
| 35 | * @internal |
||
| 36 | */ |
||
| 37 | public function markAsFrozen() |
||
| 41 | } |
||
| 42 |