web-base/core/Elements/StaticView.class.php
Roman Hergenreder bc2fbbda68 reactjs
2020-06-14 12:38:35 +02:00

13 lines
164 B
PHP

<?php
namespace Elements;
abstract class StaticView {
public abstract function getCode();
public function __toString() {
return $this->getCode();
}
}