batufa/system/classes/router.php
2008-12-05 01:37:18 +00:00

13 lines
171 B
PHP

<?php
class Router_Core {
protected $routes = array();
public static function add($name, Route $route)
{
$this->routes[$name] = $route;
}
} // End Kohana_Router