first commit
This commit is contained in:
19
vendor/php-flasher/flasher/Template/EngineInterface.php
vendored
Normal file
19
vendor/php-flasher/flasher/Template/EngineInterface.php
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the PHPFlasher package.
|
||||
* (c) Younes KHOUBZA <younes.khoubza@gmail.com>
|
||||
*/
|
||||
|
||||
namespace Flasher\Prime\Template;
|
||||
|
||||
interface EngineInterface
|
||||
{
|
||||
/**
|
||||
* @param string $name
|
||||
* @param array<string, mixed> $context
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function render($name, array $context = array());
|
||||
}
|
Reference in New Issue
Block a user