moved routing classes into system namespace.

This commit is contained in:
Taylor Otwell
2011-07-31 13:14:39 -05:00
parent ce96fb6717
commit 83ace2de68
5 changed files with 10 additions and 10 deletions

View File

@@ -55,7 +55,7 @@ class Route {
}
elseif (is_array($this->callback))
{
$response = isset($this->callback['before']) ? Route\Filter::call($this->callback['before'], array(), true) : null;
$response = isset($this->callback['before']) ? Route_Filter::call($this->callback['before'], array(), true) : null;
if (is_null($response) and isset($this->callback['do']))
{
@@ -67,7 +67,7 @@ class Route {
if (is_array($this->callback) and isset($this->callback['after']))
{
Route\Filter::call($this->callback['after'], array($response));
Route_Filter::call($this->callback['after'], array($response));
}
return $response;