14 lines
231 B
PHP
14 lines
231 B
PHP
<?php
|
|
|
|
class ErrorController extends ControllerBase
|
|
{
|
|
public function errorAction()
|
|
{
|
|
}
|
|
|
|
public function show404Action()
|
|
{
|
|
// Set status code to 404.
|
|
$this->response->setStatusCode(404);
|
|
}
|
|
}
|