в чем проблема? Как заставить класс Router прочитать маршруты с файла routes.php
Почему то выдает ошибку
class Router
{
private $routes;
public function __construct()
{
$routesPath = ROOT . 'config/routes.php';
$this->routes = include($routesPath);
}
public function run()
{
print_r($this->routes);
}
}
Файл Routes.php :
return array
(
'news' => 'news/index',
'product' => 'product/list',
);
Первая ошибка Warning: include(ROOTconfig/routes.php): failed to open stream: No such file or directory
Вторая ошибка Warning: include(): Failed opening 'ROOTconfig/routes.php' for inclusion (include_path='.')