aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/controller
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/controller')
-rw-r--r--phpBB/includes/controller/route_collection.php36
1 files changed, 0 insertions, 36 deletions
diff --git a/phpBB/includes/controller/route_collection.php b/phpBB/includes/controller/route_collection.php
deleted file mode 100644
index e6c7d3b543..0000000000
--- a/phpBB/includes/controller/route_collection.php
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-/**
-*
-* @package controller
-* @copyright (c) 2012 phpBB Group
-* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
-*
-*/
-
-/**
-* @ignore
-*/
-if (!defined('IN_PHPBB'))
-{
- exit;
-}
-
-use Symfony\Component\Routing\RouteCollection;
-
-/**
-* Controller manager class
-* @package phpBB3
-*/
-class phpbb_controller_route_collection extends RouteCollection
-{
- /**
- * Construct method
- *
- * @param phpbb_extension_finder $finder Finder object
- */
- public function __construct(phpbb_extension_finder $finder, phpbb_controller_provider $provider)
- {
- parent::__construct();
- $this->addCollection($provider->get_paths($finder)->find());
- }
-}