Passed
Push — master ( 379f19...9ce0c5 )
by
unknown
06:34
created
src/Input/OldInputMiddleware.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace CarbonFramework\Input;
4 4
 
5
+use CarbonFramework\Middleware\MiddlewareInterface;
5 6
 use Closure;
6 7
 use Flash;
7 8
 use OldInput;
8
-use CarbonFramework\Middleware\MiddlewareInterface;
9 9
 
10 10
 /**
11 11
  * Flash current request data and clear old request data
Please login to merge, or discard this patch.
src/Routing/Route.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace CarbonFramework\Routing;
4 4
 
5
-use Exception;
6
-use CarbonFramework\Request;
7 5
 use CarbonFramework\Middleware\HasMiddlewareTrait;
6
+use CarbonFramework\Request;
8 7
 use CarbonFramework\Routing\Conditions\ConditionInterface;
9 8
 use CarbonFramework\Routing\Conditions\Factory;
10
-use CarbonFramework\Routing\Conditions\Url as UrlCondition;
11 9
 use CarbonFramework\Routing\Conditions\InvalidRouteConditionException;
10
+use CarbonFramework\Routing\Conditions\Url as UrlCondition;
11
+use Exception;
12 12
 
13 13
 /**
14 14
  * Represent a route
Please login to merge, or discard this patch.
src/Routing/RouteGroup.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace CarbonFramework\Routing;
4 4
 
5
-use Closure;
6
-use Exception;
5
+use CarbonFramework\Middleware\HasMiddlewareTrait;
7 6
 use CarbonFramework\Request;
8 7
 use CarbonFramework\Routing\Conditions\ConditionInterface;
9 8
 use CarbonFramework\Routing\Conditions\Url as UrlCondition;
10
-use CarbonFramework\Middleware\HasMiddlewareTrait;
9
+use Closure;
10
+use Exception;
11 11
 
12 12
 class RouteGroup implements RouteInterface {
13 13
 	use HasRoutesTrait {
Please login to merge, or discard this patch.