Skip to content

Commit

Permalink
[#14213] - Refactor Dispatcher with AbstractDispatcher
Browse files Browse the repository at this point in the history
  • Loading branch information
niden committed Jul 4, 2019
1 parent d7804ef commit 82abff2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion phalcon/Cli/Dispatcher.zep
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
namespace Phalcon\Cli;

use Phalcon\Cli\Dispatcher\Exception;
use Phalcon\Dispatcher as CliDispatcher;
use Phalcon\Dispatcher\AbstractDispatcher as CliDispatcher;
use Phalcon\Events\ManagerInterface;
use Phalcon\Filter\FilterInterface;

Expand Down
2 changes: 1 addition & 1 deletion phalcon/Cli/DispatcherInterface.zep
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace Phalcon\Cli;

use Phalcon\DispatcherInterface as DispatcherInterfaceBase;
use Phalcon\Dispatcher\DispatcherInterface as DispatcherInterfaceBase;

/**
* Interface for Phalcon\Cli\Dispatcher
Expand Down
2 changes: 1 addition & 1 deletion phalcon/Dispatcher/Dispatcher.zep
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace Phalcon\Dispatcher;
use Exception;
use Phalcon\DiInterface;
use Phalcon\Di\InjectionAwareInterface;
use Phalcon\DispatcherInterface;
use Phalcon\Dispatcher\DispatcherInterface;
use Phalcon\Events\EventsAwareInterface;
use Phalcon\Events\ManagerInterface;
use Phalcon\Exception as PhalconException;
Expand Down
2 changes: 1 addition & 1 deletion phalcon/Dispatcher/DispatcherInterface.zep
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
namespace Phalcon\Dispatcher;

/**
* Interface for Phalcon\Dispatcher
* Interface for Phalcon\Dispatcher\AbstractDispatcher
*/
interface DispatcherInterface
{
Expand Down
2 changes: 1 addition & 1 deletion phalcon/Mvc/Dispatcher.zep
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use Phalcon\Mvc\Dispatcher\Exception;
use Phalcon\Events\ManagerInterface;
use Phalcon\Http\ResponseInterface;
use Phalcon\Mvc\ControllerInterface;
use Phalcon\Dispatcher as BaseDispatcher;
use Phalcon\Dispatcher\AbstractDispatcher as BaseDispatcher;

/**
* Dispatching is the process of taking the request object, extracting the
Expand Down
2 changes: 1 addition & 1 deletion phalcon/Mvc/DispatcherInterface.zep
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
namespace Phalcon\Mvc;

use Phalcon\Mvc\ControllerInterface;
use Phalcon\DispatcherInterface as DispatcherInterfaceBase;
use Phalcon\Dispatcher\DispatcherInterface as DispatcherInterfaceBase;

/**
* Phalcon\Mvc\DispatcherInterface
Expand Down

0 comments on commit 82abff2

Please sign in to comment.