Completed
Branch master (e1f92c)
by Rob
09:55
created
src/AbstractCerberus.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -108,6 +108,9 @@
 block discarded – undo
108 108
         return $merged;
109 109
     }
110 110
 
111
+    /**
112
+     * @param string $name
113
+     */
111 114
     private function getOption($name)
112 115
     {
113 116
         if (!$this->hasOption($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
@@ -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.