Completed
Push — master ( f76706...507944 )
by Rob
02:03
created
src/AbstractCerberus.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     }
36 36
 
37 37
     /**
38
-     * @param $name
38
+     * @param string $name
39 39
      * @return mixed|null
40 40
      */
41 41
     private function getOption($name)
Please login to merge, or discard this patch.
src/Wrappers/Wrapper.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -96,12 +96,18 @@  discard block
 block discarded – undo
96 96
         return $this->reference;
97 97
     }
98 98
 
99
+    /**
100
+     * @param string $reference
101
+     */
99 102
     protected function setReference($reference)
100 103
     {
101 104
         $this->reference = $reference;
102 105
         return $this;
103 106
     }
104 107
 
108
+    /**
109
+     * @param string $name
110
+     */
105 111
     protected function initWrapper($name)
106 112
     {
107 113
         $this->setName($name);
@@ -177,6 +183,9 @@  discard block
 block discarded – undo
177 183
         return $this->score;
178 184
     }
179 185
 
186
+    /**
187
+     * @param integer $score
188
+     */
180 189
     protected function setScore($score)
181 190
     {
182 191
         $this->score = $score;
Please login to merge, or discard this patch.