2023-12-30 18:40:23 +04:00
|
|
|
<?php
|
2023-12-31 18:54:10 +04:00
|
|
|
namespace nur\sery\php\content\impl;
|
2023-12-30 18:40:23 +04:00
|
|
|
|
2023-12-31 18:54:10 +04:00
|
|
|
use nur\sery\php\content\IPrintable;
|
2023-12-30 18:40:23 +04:00
|
|
|
|
|
|
|
class APrintable implements IPrintable {
|
|
|
|
function print(): void {
|
|
|
|
echo "<p>printable</p>";
|
|
|
|
}
|
|
|
|
}
|