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

11 lines
180 B
PHP
Raw Normal View History

2023-12-30 18:40:23 +04:00
<?php
namespace nur\sery\sys\impl;
use nur\sery\sys\IContent;
class AContent implements IContent {
function getContent(): iterable {
return ["<span>content</span>"];
}
}