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

11 lines
196 B
PHP

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