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

11 lines
158 B
PHP

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