nur-sery/tests/php/content/impl/APrintable.php

11 lines
185 B
PHP

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