Passed
Push — master ( 431198...0d9638 )
by
unknown
01:44
created
src/Routing/Conditions/Factory.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace CarbonFramework\Routing\Conditions;
4 4
 
5
-use Closure;
6
-use ReflectionClass;
7
-use Exception;
8 5
 use CarbonFramework\Framework;
9
-use CarbonFramework\Routing\Conditions\Url as UrlCondition;
10 6
 use CarbonFramework\Routing\Conditions\Custom as CustomCondition;
11 7
 use CarbonFramework\Routing\Conditions\Multiple as MultipleCondition;
8
+use CarbonFramework\Routing\Conditions\Url as UrlCondition;
9
+use Closure;
10
+use Exception;
11
+use ReflectionClass;
12 12
 
13 13
 /**
14 14
  * Check against the current url
Please login to merge, or discard this patch.
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.