Completed
Push — master ( 1ecf45...414f2f )
by Derek
02:32
created
src/Nabu/LoggerHandler/HandlerInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Nabu/LoggerHandler/File.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     }
58 58
 
59 59
     /**
60
-     * @return string|null  The file_path set for the File instance
60
+     * @return string  The file_path set for the File instance
61 61
      */
62 62
     public function getFilePath()
63 63
     {
Please login to merge, or discard this patch.