1 | <?php |
||
20 | trait BooleanDebugTrait { |
||
21 | |||
22 | /** |
||
23 | * Debug. |
||
24 | * |
||
25 | * @var bool |
||
26 | */ |
||
27 | protected $debug; |
||
28 | |||
29 | /** |
||
30 | * Get the debug. |
||
31 | * |
||
32 | * @return bool Returns the debug. |
||
33 | */ |
||
34 | public function getDebug() { |
||
37 | |||
38 | /** |
||
39 | * Set the debug. |
||
40 | * |
||
41 | * @param bool $debug The debug. |
||
42 | */ |
||
43 | public function setDebug($debug) { |
||
47 | } |
||
48 |