Passed
Push — master ( c5dc05...896c66 )
by Atanas
02:38
created
src/Helpers/Handler.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,6 @@
 block discarded – undo
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() {
Please login to merge, or discard this patch.
src/Routing/Conditions/CustomCondition.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Routing/RouteHandler.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,6 @@
 block discarded – undo
36 36
 	/**
37 37
 	 * Execute the handler
38 38
 	 *
39
-	 * @param  mixed $arguments,...
40 39
 	 * @return mixed
41 40
 	 */
42 41
 	public function execute() {
Please login to merge, or discard this patch.
src/Routing/RouteGroup.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 	 * Constructor
33 33
 	 *
34 34
 	 * @throws Exception
35
-	 * @param  mixed     $condition
35
+	 * @param  string     $condition
36 36
 	 * @param  Closure   $closure
37 37
 	 */
38 38
 	public function __construct( $condition, Closure $closure ) {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,8 +8,8 @@
 block discarded – undo
8 8
 use WPEmerge\Middleware\HasMiddlewareTrait;
9 9
 use WPEmerge\Requests\Request;
10 10
 use WPEmerge\Routing\Conditions\ConditionInterface;
11
-use WPEmerge\Routing\Conditions\UrlCondition;
12 11
 use WPEmerge\Routing\Conditions\MultipleCondition;
12
+use WPEmerge\Routing\Conditions\UrlCondition;
13 13
 
14 14
 class RouteGroup implements RouteInterface, HasRoutesInterface {
15 15
 	use HasRoutesTrait {
Please login to merge, or discard this patch.