@@ -59,7 +59,7 @@ |
||
59 | 59 | } |
60 | 60 | |
61 | 61 | /** |
62 | - * @return null|string The file_path set for the File instance |
|
62 | + * @return string The file_path set for the File instance |
|
63 | 63 | */ |
64 | 64 | public function getFilePath() |
65 | 65 | { |
@@ -9,6 +9,9 @@ discard block |
||
9 | 9 | */ |
10 | 10 | interface HandlerInterface |
11 | 11 | { |
12 | + /** |
|
13 | + * @return boolean |
|
14 | + */ |
|
12 | 15 | public function initialize(); |
13 | 16 | |
14 | 17 | /** |
@@ -17,7 +20,13 @@ discard block |
||
17 | 20 | */ |
18 | 21 | public function write($message); |
19 | 22 | |
23 | + /** |
|
24 | + * @return void |
|
25 | + */ |
|
20 | 26 | public function suppressOutput(); |
21 | 27 | |
28 | + /** |
|
29 | + * @return void |
|
30 | + */ |
|
22 | 31 | public function allowOutput(); |
23 | 32 | } |