Files
spa-api/application/controllers/base.php

17 lines
302 B
PHP
Raw Normal View History

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-04 21:30:52 +00:00
* @return Laravel\Response
2012-02-03 08:55:04 -06:00
*/
public function __call($method, $parameters)
{
return Response::error('404');
}
}