@@ -28,7 +28,7 @@ |
||
28 | 28 | * Constructor |
29 | 29 | * |
30 | 30 | * @throws Exception |
31 | - * @param string|ConditionInterface $target |
|
31 | + * @param string $target |
|
32 | 32 | * @param Closure $closure |
33 | 33 | */ |
34 | 34 | public function __construct( $target, Closure $closure ) { |
@@ -82,7 +82,6 @@ |
||
82 | 82 | /** |
83 | 83 | * Execute the parsed handler with any provided arguments and return the result |
84 | 84 | * |
85 | - * @param mixed $arguments,... |
|
86 | 85 | * @return mixed |
87 | 86 | */ |
88 | 87 | public function execute() { |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -use WPEmerge\Facades\View; |
|
4 | 3 | use WPEmerge\Facades\Response; |
4 | +use WPEmerge\Facades\View; |
|
5 | 5 | |
6 | 6 | if ( ! function_exists( 'app_response' ) ) { |
7 | 7 | /** |
@@ -26,7 +26,6 @@ |
||
26 | 26 | * Constructor |
27 | 27 | * |
28 | 28 | * @param callable $callable |
29 | - * @param mixed $arguments,... |
|
30 | 29 | */ |
31 | 30 | public function __construct( $callable ) { |
32 | 31 | $this->callable = $callable; |
@@ -5,8 +5,8 @@ |
||
5 | 5 | use Exception; |
6 | 6 | use WPEmerge\Middleware\HasMiddlewareTrait; |
7 | 7 | use WPEmerge\Requests\Request; |
8 | -use WPEmerge\Routing\Conditions\ConditionInterface; |
|
9 | 8 | use WPEmerge\Routing\Conditions\ConditionFactory; |
9 | +use WPEmerge\Routing\Conditions\ConditionInterface; |
|
10 | 10 | use WPEmerge\Routing\Conditions\InvalidRouteConditionException; |
11 | 11 | use WPEmerge\Routing\Conditions\UrlCondition; |
12 | 12 |
@@ -36,7 +36,6 @@ |
||
36 | 36 | /** |
37 | 37 | * Execute the handler |
38 | 38 | * |
39 | - * @param mixed $arguments,... |
|
40 | 39 | * @return mixed |
41 | 40 | */ |
42 | 41 | public function execute() { |