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