2012-02-03 08:55:04 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class Base_Controller extends Controller {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Catch-all method for requests that can't be matched.
|
|
|
|
|
*
|
|
|
|
|
* @param string $method
|
|
|
|
|
* @param array $parameters
|
2012-02-12 14:48:36 -06:00
|
|
|
* @return Response
|
2012-02-03 08:55:04 -06:00
|
|
|
*/
|
|
|
|
|
public function __call($method, $parameters)
|
|
|
|
|
{
|
|
|
|
|
return Response::error('404');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|