| 1 | <?php |
||
| 12 | class ConfigurationManager |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Structures configuration |
||
| 16 | * |
||
| 17 | * @var Configuration |
||
| 18 | */ |
||
| 19 | private static $configuration; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Get structures configuration class |
||
| 23 | * |
||
| 24 | * @return Configuration |
||
| 25 | */ |
||
| 26 | 196 | public static function getConfiguration() |
|
| 33 | |||
| 34 | /** |
||
| 35 | * Set structures configuration class |
||
| 36 | * |
||
| 37 | * @param Configuration $configuration |
||
| 38 | * @return void |
||
| 39 | */ |
||
| 40 | 211 | public static function setConfiguration(Configuration $configuration) |
|
| 44 | } |
||
| 45 |