11 lines
180 B
PHP
11 lines
180 B
PHP
|
<?php
|
||
|
namespace nur\sery\sys\impl;
|
||
|
|
||
|
use nur\sery\sys\IContent;
|
||
|
|
||
|
class AContent implements IContent {
|
||
|
function getContent(): iterable {
|
||
|
return ["<span>content</span>"];
|
||
|
}
|
||
|
}
|