Passed
Push — master ( c8e013...b26d44 )
by
unknown
01:49
created
src/Routing/RouteGroup.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 	/**
29 29
 	 * Constructor
30 30
 	 * 
31
-	 * @param string|ConditionInterface $target
31
+	 * @param string $target
32 32
 	 * @param Closure                   $callable
33 33
 	 */
34 34
 	public function __construct( $target, Closure $callable ) {
Please login to merge, or discard this patch.
src/Routing/Middleware/HasMiddlewareTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 	 * Add middleware
49 49
 	 *
50 50
 	 * @param  string|callable|\CarbonFramework\Routing\Middleware\MiddlewareInterface|array $middleware
51
-	 * @return object                                                                        $this
51
+	 * @return HasMiddlewareTrait                                                                        $this
52 52
 	 */
53 53
 	public function addMiddleware( $middleware ) {
54 54
 		$middleware = is_array( $middleware ) ? $middleware : [$middleware];
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 	 * Alias for addMiddleware
68 68
 	 *
69 69
 	 * @param  string|callable|\CarbonFramework\Routing\Middleware\middlewareInterface|array $middleware
70
-	 * @return object                                                                        $this
70
+	 * @return HasMiddlewareTrait                                                                        $this
71 71
 	 */
72 72
 	public function add( $middleware ) {
73 73
 		return $this->addMiddleware( $middleware );
Please login to merge, or discard this patch.