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

13 lines
169 B
PHP
Raw Normal View History

2020-04-04 01:15:59 +02:00
<?php
2022-11-18 18:06:46 +01:00
namespace Core\Elements;
2020-04-04 01:15:59 +02:00
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
}