Passed
Push — master ( 338249...ac9ce0 )
by Charis
02:12
created
src/Http/Uri.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -255,7 +255,7 @@
 block discarded – undo
255 255
      * withString function.
256 256
      * 
257 257
      * @access protected
258
-     * @param mixed $str
258
+     * @param string $string
259 259
      * @return Uri
260 260
      */
261 261
     protected function withString($string, $name = 'query')
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -263,7 +263,7 @@
 block discarded – undo
263 263
         if (!is_string($string) && !method_exists($string, '__toString')) {
264 264
             throw new InvalidArgumentException('Uri fragment must be a string');
265 265
         }
266
-        $string = ltrim((string)$string, '#');
266
+        $string = ltrim((string) $string, '#');
267 267
         $clone = clone $this;
268 268
         $clone->$name = $this->filterQuery($string);
269 269
 
Please login to merge, or discard this patch.
src/Router.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -272,7 +272,7 @@
 block discarded – undo
272 272
      * @param mixed $method
273 273
      * @param string $pattern
274 274
      * @param mixed $handler
275
-     * @return Resilient\Design\RouteableInterface
275
+     * @return Router
276 276
      */
277 277
     public function map($method, string $pattern, $handler)
278 278
     {
Please login to merge, or discard this patch.