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\IStaticContent;
|
|
|
|
use nur\sery\php\content\impl\html;
|
2023-12-30 18:40:23 +04:00
|
|
|
|
|
|
|
class AStaticContent implements IStaticContent {
|
|
|
|
function getContent(): iterable {
|
|
|
|
return [
|
|
|
|
[html::P, "static content"],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|