2024-11-28 15:39:23 +04:00
|
|
|
<?php
|
2024-11-28 21:24:16 +04:00
|
|
|
namespace nur\sery\php\content\impl;
|
2024-11-28 15:39:23 +04:00
|
|
|
|
2024-11-28 21:24:16 +04:00
|
|
|
use nur\sery\php\content\IContent;
|
2024-11-28 15:39:23 +04:00
|
|
|
|
|
|
|
class AContent implements IContent {
|
|
|
|
function getContent(): iterable {
|
|
|
|
return ["<span>content</span>"];
|
|
|
|
}
|
|
|
|
}
|