Skip to content

Commit

Permalink
Simplify import.
Browse files Browse the repository at this point in the history
Signed-off-by: crynobone <crynobone@gmail.com>
  • Loading branch information
crynobone committed Feb 10, 2015
1 parent f56ab69 commit b5f7dc6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/Routing/ControllerDispatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
use Orchestra\Contracts\Routing\StackableController;
use Orchestra\Contracts\Routing\FilterableController;
use Illuminate\Routing\Controller as IlluminateController;
use Illuminate\Routing\ControllerDispatcher as BaseDispatcher;

class ControllerDispatcher extends \Illuminate\Routing\ControllerDispatcher
class ControllerDispatcher extends BaseDispatcher
{
/**
* Dispatch a request to a given controller and method.
Expand Down
4 changes: 3 additions & 1 deletion src/Routing/Router.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php namespace Orchestra\Routing;

class Router extends \Illuminate\Routing\Router
use Illuminate\Routing\Router as BaseRouter;

class Router extends BaseRouter
{
/**
* Indicates if the router is running filters.
Expand Down
4 changes: 3 additions & 1 deletion src/Routing/RoutingServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php namespace Orchestra\Routing;

class RoutingServiceProvider extends \Illuminate\Routing\RoutingServiceProvider
use Illuminate\Routing\RoutingServiceProvider as ServiceProvider;

class RoutingServiceProvider extends ServiceProvider
{
/**
* Register the router instance.
Expand Down

0 comments on commit b5f7dc6

Please sign in to comment.