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

11 lines
211 B
PHP

<?php
namespace nur\b\ui;
/**
* Interface IContent: un objet capable de produire un contenu à afficher.
*/
interface IContent {
/** retourner le contenu à afficher */
function getContent(): iterable;
}