Passed
Push — master ( 31dd43...fc9732 )
by Mikael
02:05
created
src/Route/Route.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -76,11 +76,11 @@
 block discarded – undo
76 76
     /**
77 77
      * Check if value is matching a certain type of values.
78 78
      *
79
-     * @param string $rulePart   the rule part to check.
80
-     * @param string $queryPart  the query part to check.
81 79
      * @param array  &$args      add argument to args array if matched
80
+     * @param string $value
81
+     * @param string $type
82 82
      *
83
-     * @return boolean
83
+     * @return boolean|null
84 84
      */
85 85
     private function checkPartMatchingType($value, $type)
86 86
     {
Please login to merge, or discard this patch.
src/Route/RouterInjectable.php 1 patch
Doc Comments   +2 added lines, -6 removed lines patch added patch discarded remove patch
@@ -143,7 +143,6 @@  discard block
 block discarded – undo
143 143
     /**
144 144
      * Shortcut to add a GET route.
145 145
      *
146
-     * @param null|string|array    $method as request methods
147 146
      * @param null|string|callable $action a callback handler for the route.
148 147
      *
149 148
      * @return class|array as new route(s), class if one added, else array.
@@ -158,7 +157,6 @@  discard block
 block discarded – undo
158 157
     /**
159 158
     * Shortcut to add a POST route.
160 159
      *
161
-     * @param null|string|array    $method as request methods
162 160
      * @param null|string|callable $action a callback handler for the route.
163 161
      *
164 162
      * @return class|array as new route(s), class if one added, else array.
@@ -173,7 +171,6 @@  discard block
 block discarded – undo
173 171
     /**
174 172
     * Shortcut to add a PUT route.
175 173
      *
176
-     * @param null|string|array    $method as request methods
177 174
      * @param null|string|callable $action a callback handler for the route.
178 175
      *
179 176
      * @return class|array as new route(s), class if one added, else array.
@@ -188,7 +185,6 @@  discard block
 block discarded – undo
188 185
     /**
189 186
     * Shortcut to add a DELETE route.
190 187
      *
191
-     * @param null|string|array    $method as request methods
192 188
      * @param null|string|callable $action a callback handler for the route.
193 189
      *
194 190
      * @return class|array as new route(s), class if one added, else array.
@@ -207,7 +203,7 @@  discard block
 block discarded – undo
207 203
      * @param string               $rule   for this route
208 204
      * @param null|string|callable $action a callback handler for the route.
209 205
      *
210
-     * @return class|array as new route(s), class if one added, else array.
206
+     * @return Route as new route(s), class if one added, else array.
211 207
      */
212 208
     public function addInternal($rule, $action)
213 209
     {
@@ -222,7 +218,7 @@  discard block
 block discarded – undo
222 218
     /**
223 219
      * Get the route for the last route that was handled.
224 220
      *
225
-     * @return mixed
221
+     * @return string
226 222
      */
227 223
     public function getLastRoute()
228 224
     {
Please login to merge, or discard this patch.