1 | <?php |
||
12 | trait DebuggableTrait |
||
13 | { |
||
14 | /** |
||
15 | * Outputs/returns printed array for debug. |
||
16 | * |
||
17 | * @param bool $return Whether return or output directly |
||
18 | * |
||
19 | * @return $this|string |
||
20 | */ |
||
21 | 4 | public function debug($return = false) |
|
31 | |||
32 | /** |
||
33 | * Exports array for using in PHP scripts. |
||
34 | * |
||
35 | * @param bool $return Whether return or output directly |
||
36 | * |
||
37 | * @return $this|string |
||
38 | * |
||
39 | * @link http://php.net/manual/en/function.var-export.php |
||
40 | */ |
||
41 | 4 | public function export($return = false) |
|
51 | } |
||
52 |