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

14 lines
268 B
PHP
Raw Normal View History

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\IStaticContent;
use nur\sery\php\content\impl\html;
2023-12-30 18:40:23 +04:00
class AStaticContent implements IStaticContent {
function getContent(): iterable {
return [
[html::P, "static content"],
];
}
}