nur-sery/nur_src/b/ui/IContent.php

11 lines
211 B
PHP
Raw Normal View History

2023-12-03 22:10:18 +04:00
<?php
namespace nur\b\ui;
/**
* Interface IContent: un objet capable de produire un contenu à afficher.
*/
interface IContent {
/** retourner le contenu à afficher */
function getContent(): iterable;
}