29 lines
425 B
PHP
29 lines
425 B
PHP
|
<?php
|
||
|
class EmptyTemplate implements ITemplate
|
||
|
{
|
||
|
protected Template $template;
|
||
|
protected ?object $options = null;
|
||
|
|
||
|
public function __construct(Template &$template, ?object $options = null)
|
||
|
{
|
||
|
$this->template = $template;
|
||
|
$this->options = $options;
|
||
|
}
|
||
|
|
||
|
public function load()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function pretransform()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function transform()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function save()
|
||
|
{
|
||
|
}
|
||
|
}
|