revert back to more sensible architecture.

This commit is contained in:
Taylor Otwell
2011-09-20 23:14:09 -05:00
parent 47db2ff19b
commit 4525eae25a
33 changed files with 1050 additions and 1558 deletions

View File

@@ -21,7 +21,7 @@ abstract class Controller {
*/
public function __call($method, $parameters)
{
return IoC::container()->resolve('laravel.response')->error('404');
return Response::error('404');
}
/**