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

11 lines
196 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\IContent;
2023-12-30 18:40:23 +04:00
class AContent implements IContent {
function getContent(): iterable {
return ["<span>content</span>"];
}
}