Completed
Push — master ( 0995af...18e83b )
by Rob
01:54
created
src/Wrappers/Wrapper.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -65,6 +65,9 @@  discard block
 block discarded – undo
65 65
         return $this->reference;
66 66
     }
67 67
 
68
+    /**
69
+     * @param string $reference
70
+     */
68 71
     protected function setReference($reference)
69 72
     {
70 73
         $this->reference = $reference;
@@ -104,6 +107,9 @@  discard block
 block discarded – undo
104 107
         return isset($this->options[$this->name][$name]);
105 108
     }
106 109
 
110
+    /**
111
+     * @param string $name
112
+     */
107 113
     protected function initWrapper($name)
108 114
     {
109 115
         $this->setName($name);
@@ -179,6 +185,9 @@  discard block
 block discarded – undo
179 185
         return $this->score;
180 186
     }
181 187
 
188
+    /**
189
+     * @param integer $score
190
+     */
182 191
     protected function setScore($score)
183 192
     {
184 193
         $this->score = $score;
Please login to merge, or discard this patch.
src/AbstractCerberus.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@
 block discarded – undo
36 36
         }
37 37
     }
38 38
 
39
+    /**
40
+     * @param string $name
41
+     */
39 42
     private function getOption($name)
40 43
     {
41 44
         if (!$this->hasOption($name)) {
Please login to merge, or discard this patch.