Core MVC, HTTP client, Session, Cookie, Config, HTTPException — 111 PHPUnit tests. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
357 B
HTML
21 lines
357 B
HTML
<?php
|
|
/**
|
|
* @package Bicycle
|
|
* @author Egor Isaev
|
|
* @description 404.html
|
|
* @copyright (c) 03/06/2026
|
|
*/
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>404 — Страница не найдена</title>
|
|
</head>
|
|
<body>
|
|
<h1>404</h1>
|
|
<p>Страница не найдена.</p>
|
|
</body>
|
|
</html>
|