mirror of
https://github.com/SophiaAtkinson/steamwidgets-web.git
synced 2025-06-27 14:37:41 -07:00
17 lines
320 B
PHP
17 lines
320 B
PHP
<?php
|
|
|
|
/**
|
|
* Example error 404 controller
|
|
*/
|
|
class Error404Controller extends BaseController {
|
|
/**
|
|
* Handles special case: $404
|
|
*
|
|
* @param Asatru\Controller\ControllerArg $request
|
|
* @return Asatru\View\ViewHandler
|
|
*/
|
|
public function index($request)
|
|
{
|
|
return parent::view(['content', 'error/404']);
|
|
}
|
|
} |