1 | <?php |
||
5 | class Settings |
||
6 | { |
||
7 | /** |
||
8 | * @var bool |
||
9 | */ |
||
10 | private $debug; |
||
11 | |||
12 | /** |
||
13 | * @param bool $debug |
||
14 | */ |
||
15 | public function __construct($debug) |
||
19 | |||
20 | /** |
||
21 | * @param bool $debug |
||
22 | * |
||
23 | * @return Settings |
||
24 | */ |
||
25 | public function setDebug($debug) |
||
31 | |||
32 | /** |
||
33 | * @return bool |
||
34 | */ |
||
35 | public function getDebug() |
||
39 | } |
||
40 |