| 1 | <?php |
||
| 9 | class ScalarView implements ViewInterface |
||
| 10 | { |
||
| 11 | private $template; |
||
| 12 | private $value; |
||
| 13 | private $raw; |
||
| 14 | private $tag; |
||
| 15 | |||
| 16 | public function __construct(string $template, $value, string $tag = null, bool $raw) |
||
| 23 | |||
| 24 | public function getTemplate(): string |
||
| 28 | |||
| 29 | public function getTag() |
||
| 33 | |||
| 34 | public function getValue() |
||
| 38 | |||
| 39 | public function isRaw() |
||
| 43 | } |
||
| 44 |