Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos-webui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/zendframework/zend-mvc/src/RouteListener.php')
-rw-r--r--vendor/zendframework/zend-mvc/src/RouteListener.php60
1 files changed, 0 insertions, 60 deletions
diff --git a/vendor/zendframework/zend-mvc/src/RouteListener.php b/vendor/zendframework/zend-mvc/src/RouteListener.php
deleted file mode 100644
index e86878e..0000000
--- a/vendor/zendframework/zend-mvc/src/RouteListener.php
+++ /dev/null
@@ -1,60 +0,0 @@
-<?php
-/**
- * Zend Framework (http://framework.zend.com/)
- *
- * @link http://github.com/zendframework/zf2 for the canonical source repository
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
-
-namespace Zend\Mvc;
-
-use Zend\EventManager\AbstractListenerAggregate;
-use Zend\EventManager\EventManagerInterface;
-
-class RouteListener extends AbstractListenerAggregate
-{
- /**
- * Attach to an event manager
- *
- * @param EventManagerInterface $events
- * @return void
- */
- public function attach(EventManagerInterface $events)
- {
- $this->listeners[] = $events->attach(MvcEvent::EVENT_ROUTE, array($this, 'onRoute'));
- }
-
- /**
- * Listen to the "route" event and attempt to route the request
- *
- * If no matches are returned, triggers "dispatch.error" in order to
- * create a 404 response.
- *
- * Seeds the event with the route match on completion.
- *
- * @param MvcEvent $e
- * @return null|Router\RouteMatch
- */
- public function onRoute($e)
- {
- $target = $e->getTarget();
- $request = $e->getRequest();
- $router = $e->getRouter();
- $routeMatch = $router->match($request);
-
- if (!$routeMatch instanceof Router\RouteMatch) {
- $e->setError(Application::ERROR_ROUTER_NO_MATCH);
-
- $results = $target->getEventManager()->trigger(MvcEvent::EVENT_DISPATCH_ERROR, $e);
- if (count($results)) {
- return $results->last();
- }
-
- return $e->getParams();
- }
-
- $e->setRouteMatch($routeMatch);
- return $routeMatch;
- }
-}