11 lines
185 B
PHP
11 lines
185 B
PHP
|
<?php
|
||
|
namespace nur\ture\php\content\impl;
|
||
|
|
||
|
use nur\ture\php\content\IPrintable;
|
||
|
|
||
|
class APrintable implements IPrintable {
|
||
|
function print(): void {
|
||
|
echo "<p>printable</p>";
|
||
|
}
|
||
|
}
|