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

@@ -138,7 +138,7 @@ if (System\Config::get('session.driver') != '')
// --------------------------------------------------------------
// Execute the global "before" filter.
// --------------------------------------------------------------
$response = System\Route\Filter::call('before', array(), true);
$response = System\Route_Filter::call('before', array(), true);
// ----------------------------------------------------------
// Execute the route function.
@@ -157,7 +157,7 @@ else
// ----------------------------------------------------------
// Execute the global "after" filter.
// ----------------------------------------------------------
System\Route\Filter::call('after', array($response));
System\Route_Filter::call('after', array($response));
// ----------------------------------------------------------
// Stringify the response.