Namespace and ClassPath rewrites
This commit is contained in:
26
Core/Elements/EmptyHead.class.php
Normal file
26
Core/Elements/EmptyHead.class.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace Core\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 "";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user