base.php 294 B

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