| 1 | <?php |
||
| 19 | class Storage extends BaseObject |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var string[] config bootstrap (strings of a PHP code). |
||
| 23 | */ |
||
| 24 | public $bootstrap = []; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var array config array. |
||
| 28 | */ |
||
| 29 | public $config = []; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Resets the properties to an empty array. |
||
| 33 | */ |
||
| 34 | 52 | public function reset() |
|
| 38 | } |
||
| 39 |