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

11 lines
197 B
PHP

<?php
namespace nur\sery\wip\php\content\impl;
use nulib\php\content\IContent;
class AContent implements IContent {
function getContent(): iterable {
return ["<span>content</span>"];
}
}