Passed
Push — master ( 2bb76e...2f1c34 )
by Atanas
02:14
created
src/Routing/RouteGroup.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 	/**
28 28
 	 * Constructor
29 29
 	 *
30
-	 * @param string|ConditionInterface $target
30
+	 * @param string $target
31 31
 	 * @param Closure                   $callable
32 32
 	 */
33 33
 	public function __construct( $target, Closure $callable ) {
Please login to merge, or discard this patch.
src/Middleware/HasMiddlewareTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@
 block discarded – undo
43 43
 	/**
44 44
 	 * Add middleware
45 45
 	 *
46
-	 * @param  callable|\Obsidian\Middleware\MiddlewareInterface|array $middleware
47
-	 * @return object                                                  $this
46
+	 * @param  callable $middleware
47
+	 * @return HasMiddlewareTrait                                                  $this
48 48
 	 */
49 49
 	public function addMiddleware( $middleware ) {
50 50
 		$middleware = is_array( $middleware ) ? $middleware : [$middleware];
Please login to merge, or discard this patch.