2023-04-15 23:29:27 +08:00
|
|
|
<?php
|
|
|
|
|
|
2023-04-15 23:31:16 +08:00
|
|
|
namespace Kiri\Router\Base;
|
2023-04-15 23:29:27 +08:00
|
|
|
|
|
|
|
|
use Kiri\Message\Constrict\ResponseInterface;
|
|
|
|
|
|
|
|
|
|
class NotFoundController extends Controller
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return ResponseInterface
|
|
|
|
|
*/
|
|
|
|
|
public function fail(): ResponseInterface
|
|
|
|
|
{
|
|
|
|
|
return $this->response->failure(404, "not found page.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|