nur-ture/tests/wip/php/content/impl/APrintable.php
2025-03-04 08:08:03 +04:00

11 lines
186 B
PHP

<?php
namespace nur\sery\wip\php\content\impl;
use nulib\php\content\IPrintable;
class APrintable implements IPrintable {
function print(): void {
echo "<p>printable</p>";
}
}