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

14 lines
268 B
PHP

<?php
namespace nur\sery\php\content\impl;
use nur\sery\php\content\IStaticContent;
use nur\sery\php\content\impl\html;
class AStaticContent implements IStaticContent {
function getContent(): iterable {
return [
[html::P, "static content"],
];
}
}