MIF_E31222691/application/controllers/base.php

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');
}
}