11 lines
196 B
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>"];
|
|
}
|
|
}
|