Files
ponzi/application/controllers/base.php
Phill Sparks 62072e5281 PHPDoc fixes
2012-02-04 21:30:52 +00:00

17 lines
302 B
PHP

<?php
class Base_Controller extends Controller {
/**
* Catch-all method for requests that can't be matched.
*
* @param string $method
* @param array $parameters
* @return Laravel\Response
*/
public function __call($method, $parameters)
{
return Response::error('404');
}
}