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