nur-sery/nur_src/v/model/IErrorPage.php

10 lines
151 B
PHP
Raw Normal View History

2023-12-03 22:10:18 +04:00
<?php
namespace nur\v\model;
/**
* Interface IErrorPage: une page d'erreur
*/
interface IErrorPage extends IPage {
function printError(): void;
}