for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Zortje\MVC\Controller;
// @todo custom, should not be in this repo
/**
* Class NotFoundController
*
* @package Zortje\MVC\Controller
*/
class NotFoundController extends Controller
{
protected $access = [
'index' => Controller::ACTION_PUBLIC
];
protected function index()
$this->setResponseCode(404);
}