web-base/core/Elements/EmptyHead.class.php
2021-04-02 22:24:22 +02:00

26 lines
392 B
PHP

<?php
namespace Elements;
class EmptyHead extends Head {
public function __construct($document) {
parent::__construct($document);
}
protected function initSources() {
}
protected function initMetas(): array {
return array(
);
}
protected function initRawFields(): array {
return array();
}
protected function initTitle(): string {
return "";
}
}