pohja/lib/EmptyTemplate.php

29 lines
425 B
PHP
Raw Normal View History

2024-02-03 14:08:03 +01:00
<?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()
{
}
}