nulib/php/src_php/content/IPrintable.php

11 lines
203 B
PHP
Raw Normal View History

2023-12-30 18:50:40 +04:00
<?php
2023-12-31 22:37:04 +04:00
namespace nulib\php\content;
2023-12-30 18:50:40 +04:00
/**
* Interface IPrintable: un objet qui écrit du contenu sur la sortie standard
*/
interface IPrintable {
/** afficher le contenu */
function print(): void;
}