Routings moved to routing files

This commit is contained in:
Dennis Eichhorn 2016-04-01 22:16:21 +02:00
parent 9be5850dce
commit 7b50ccbb43
4 changed files with 9 additions and 10 deletions

3
Admin/Routes/console.php Normal file
View File

@ -0,0 +1,3 @@
<?php
$consoleRoutes = [];

3
Admin/Routes/http.php Normal file
View File

@ -0,0 +1,3 @@
<?php
$httpRoutes = [];

3
Admin/Routes/socket.php Normal file
View File

@ -0,0 +1,3 @@
<?php
$socketRoutes = [];

View File

@ -88,14 +88,4 @@ class Controller extends ModuleAbstract implements WebInterface
*/
protected static $dependencies = [
];
/**
* Routing elements.
*
* @var array
* @since 1.0.0
*/
protected static $routes = [
];
}