mirror of
https://github.com/Mibew/handlebars.php.git
synced 2025-04-28 16:36:43 +03:00
13 lines
181 B
PHP
13 lines
181 B
PHP
<?php
|
|
namespace Handlebars;
|
|
|
|
use Handlebars\Template;
|
|
|
|
class CustomTemplate extends Template
|
|
{
|
|
public function render($context)
|
|
{
|
|
return 'Altered Template';
|
|
}
|
|
}
|