Completed
Push — master ( 424496...251dfc )
by Tim
14:36 queued 13:04
created
lib/Test.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -35,6 +35,10 @@  discard block
 block discarded – undo
35 35
     /*
36 36
      * @return mixed
37 37
      */
38
+
39
+    /**
40
+     * @param string $item
41
+     */
38 42
     public function getOutput($item = null)
39 43
     {
40 44
         assert(is_string($item) || is_null($item));
@@ -80,6 +84,11 @@  discard block
 block discarded – undo
80 84
     /*
81 85
      * @return void
82 86
      */
87
+
88
+    /**
89
+     * @param string $category
90
+     * @param string $message
91
+     */
83 92
     protected function addMessage($state, $category, $subject, $message)
84 93
     {
85 94
         assert(is_int($state) && is_string($category) && is_string($subject) && is_string($message));
@@ -100,6 +109,10 @@  discard block
 block discarded – undo
100 109
     /*
101 110
      * @return void
102 111
      */
112
+
113
+    /**
114
+     * @param string $index
115
+     */
103 116
     protected function addOutput($value, $index = null)
104 117
     {
105 118
         if ($index === null) {
Please login to merge, or discard this patch.