for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebComplete\mvc\controller;
abstract class AbstractErrorController extends AbstractController
{
/**
* @param \Exception|null $exception
* @return mixed
*/
abstract public function action403(\Exception $exception = null);
abstract public function action404(\Exception $exception = null);
abstract public function action500(\Exception $exception = null);
* @return bool
final public function beforeAction(): bool
return parent::beforeAction();
}