Completed
Push — master ( e327bd...2b2b50 )
by Nikolas
03:41
created
src/delivery/DelayedOutput.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -40,6 +40,9 @@  discard block
 block discarded – undo
40 40
         return '';
41 41
     }
42 42
 
43
+    /**
44
+     * @param string $message
45
+     */
43 46
     public function write($message) {
44 47
         call_user_func($this->printer, $message);
45 48
     }
@@ -62,6 +65,9 @@  discard block
 block discarded – undo
62 65
         $this->exceptionHandler = $exceptionHandler;
63 66
     }
64 67
 
68
+    /**
69
+     * @param \Exception $message
70
+     */
65 71
     public function handleException($message) {
66 72
         call_user_func($this->exceptionHandler, $message);
67 73
     }
Please login to merge, or discard this patch.