Move EventDispatcher class to a separate namespace

This commit is contained in:
Dmitriy Simushev 2014-10-17 09:47:03 +00:00
parent 919c71a1c1
commit 55b7b28eb1
11 changed files with 11 additions and 10 deletions

View File

@ -25,7 +25,7 @@ use Mibew\Asset\AssetManagerInterface;
use Mibew\Authentication\AuthenticationManagerInterface;
use Mibew\Authentication\AuthenticationManagerAwareInterface;
use Mibew\Controller\ControllerResolver;
use Mibew\EventDispatcher;
use Mibew\EventDispatcher\EventDispatcher;
use Mibew\Http\CookieFactory;
use Mibew\Http\CookieFactoryAwareInterface;
use Mibew\Http\Exception\AccessDeniedException as AccessDeniedHttpException;

View File

@ -21,7 +21,7 @@ namespace Mibew\Asset;
use Mibew\Asset\Generator\UrlGenerator;
use Mibew\Asset\Generator\UrlGeneratorInterface;
use Mibew\EventDispatcher;
use Mibew\EventDispatcher\EventDispatcher;
use Symfony\Component\HttpFoundation\Request;
/**

View File

@ -19,7 +19,7 @@
namespace Mibew\Authentication;
use Mibew\EventDispatcher;
use Mibew\EventDispatcher\EventDispatcher;
use Mibew\Http\CookieFactory;
use Mibew\Http\CookieFactoryAwareInterface;
use Symfony\Component\HttpFoundation\Request;

View File

@ -19,7 +19,7 @@
namespace Mibew\Controller;
use Mibew\EventDispatcher;
use Mibew\EventDispatcher\EventDispatcher;
use Mibew\Settings;
use Symfony\Component\HttpFoundation\Request;

View File

@ -19,7 +19,7 @@
namespace Mibew\Controller;
use Mibew\EventDispatcher;
use Mibew\EventDispatcher\EventDispatcher;
use Mibew\Settings;
use Mibew\Thread;
use Symfony\Component\HttpFoundation\Request;

View File

@ -17,7 +17,7 @@
* limitations under the License.
*/
namespace Mibew;
namespace Mibew\EventDispatcher;
use Mibew\Plugin\PluginInterface;

View File

@ -21,7 +21,7 @@ namespace Mibew\RequestProcessor;
// Import namespaces and classes of the core
use Mibew\Database;
use Mibew\EventDispatcher;
use Mibew\EventDispatcher\EventDispatcher;
use Mibew\RequestProcessor\Exception\AbstractProcessorException;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;

View File

@ -23,7 +23,7 @@ namespace Mibew\RequestProcessor;
use Mibew\Authentication\AuthenticationManagerAwareInterface;
use Mibew\Authentication\AuthenticationManagerInterface;
use Mibew\Database;
use Mibew\EventDispatcher;
use Mibew\EventDispatcher\EventDispatcher;
use Mibew\Settings;
use Mibew\Thread;
use Mibew\API\API as MibewAPI;

View File

@ -20,7 +20,7 @@
namespace Mibew\Routing;
use Mibew\Plugin\Manager as PluginManager;
use Mibew\EventDispatcher;
use Mibew\EventDispatcher\EventDispatcher;
use Symfony\Component\Routing\Loader\YamlFileLoader;
use Symfony\Component\Routing\RouteCollection;
use Symfony\Component\Config\FileLocatorInterface;

View File

@ -20,6 +20,7 @@
namespace Mibew;
// Import namespaces and classes of the core
use Mibew\EventDispatcher\EventDispatcher;
use Mibew\RequestProcessor\ThreadProcessor;
/**

View File

@ -19,7 +19,7 @@
// Import namespaces and classes of the core
use Mibew\Database;
use Mibew\EventDispatcher;
use Mibew\EventDispatcher\EventDispatcher;
use Mibew\Settings;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;