web-base/core/Elements/StaticView.class.php

13 lines
164 B
PHP
Raw Normal View History

2020-04-04 01:15:59 +02:00
<?php
namespace Elements;
abstract class StaticView {
public abstract function getCode();
2020-06-14 12:38:35 +02:00
public function __toString() {
return $this->getCode();
}
2020-04-04 01:15:59 +02:00
}