1: <?php
2:
3: class Base_Controller extends Controller {
4:
5: /**
6: * Catch-all method for requests that can't be matched.
7: *
8: * @param string $method
9: * @param array $parameters
10: * @return Response
11: */
12: public function __call($method, $parameters)
13: {
14: return Response::error('404');
15: }
16:
17: }