Completed
Push — master ( 38f614...f1c5d8 )
by Gregorio
01:56
created
src/Common/Concerns/Parametrizable.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     }
80 80
 
81 81
     /**
82
-     * @param string|array $keys
82
+     * @param string $keys
83 83
      * @return bool
84 84
      */
85 85
     public function hasParameter($keys)
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     }
89 89
 
90 90
     /**
91
-     * @param string|array $keys
91
+     * @param string $keys
92 92
      */
93 93
     public function unsetParameter($keys)
94 94
     {
Please login to merge, or discard this patch.
src/Common/Validation/Validator.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,6 +126,9 @@  discard block
 block discarded – undo
126 126
         return $validator;
127 127
     }
128 128
 
129
+    /**
130
+     * @param string[] $names
131
+     */
129 132
     public function bootValidatorExtensions(&$validator, $names)
130 133
     {
131 134
         foreach ($names as $name) {
@@ -193,7 +196,7 @@  discard block
 block discarded – undo
193 196
      * @param string $attribute
194 197
      * @param string $rule
195 198
      * @param array $parameters
196
-     * @return bool
199
+     * @return string
197 200
      */
198 201
     protected static function replaceIsModel($message, $attribute, $rule, $parameters)
199 202
     {
Please login to merge, or discard this patch.