Passed
Pull Request — master (#22)
by Christopher
02:34
created
src/Facets/LengthTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 
35 35
     /**
36 36
      * @param int   $value
37
-     * @param mixed $min
37
+     * @param integer $min
38 38
      */
39 39
     private function checkValidMinMaxLength($value, $min = 0)
40 40
     {
Please login to merge, or discard this patch.
src/Facets/PatternTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
9 9
      */
10 10
     private $pattern = array();
11 11
 
12
+    /**
13
+     * @param string $value
14
+     */
12 15
     protected function setPatternFacet($value)
13 16
     {
14 17
         if (!$this->checkRegexValidPattern($value)) {
Please login to merge, or discard this patch.
src/Facets/WhiteSpaceTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -23,6 +23,9 @@
 block discarded – undo
23 23
         }
24 24
     }
25 25
 
26
+    /**
27
+     * @param string $value
28
+     */
26 29
     protected function setWhiteSpaceFacet($value)
27 30
     {
28 31
         if (!in_array($value, ['preserve', 'replace', 'collapse'])) {
Please login to merge, or discard this patch.