nulib/php/src_sys/IPrintable.php

11 lines
195 B
PHP
Raw Normal View History

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