Passed
Push — master ( b7467b...db04eb )
by Atanas
02:41
created
src/Routing/Route.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace Obsidian\Routing;
4 4
 
5
+use Exception;
5 6
 use Obsidian\Middleware\HasMiddlewareTrait;
6 7
 use Obsidian\Request;
7 8
 use Obsidian\Routing\Conditions\ConditionInterface;
8 9
 use Obsidian\Routing\Conditions\Factory;
9 10
 use Obsidian\Routing\Conditions\InvalidRouteConditionException;
10 11
 use Obsidian\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   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace Obsidian\Routing;
4 4
 
5
+use Closure;
6
+use Exception;
5 7
 use Obsidian\Middleware\HasMiddlewareTrait;
6 8
 use Obsidian\Request;
7 9
 use Obsidian\Routing\Conditions\ConditionInterface;
8 10
 use Obsidian\Routing\Conditions\Url as UrlCondition;
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.