1 | <?php |
||
7 | class Options implements OptionsInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var array |
||
11 | */ |
||
12 | private $db; |
||
13 | |||
14 | /** |
||
15 | * @param string $name |
||
16 | * @return OptionsInterface |
||
17 | */ |
||
18 | 13 | public function setDb(string $name): OptionsInterface |
|
27 | |||
28 | /** |
||
29 | * @inheritdoc |
||
30 | */ |
||
31 | 13 | public function jsonSerialize() |
|
37 | } |
||
38 |