update readme
This commit is contained in:
parent
40bd7df272
commit
c3618fd3f5
88 changed files with 7546 additions and 176 deletions
11
implementation/16-caching/src/Template/Renderer.php
Normal file
11
implementation/16-caching/src/Template/Renderer.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php declare(strict_types=1);
|
||||
|
||||
namespace Lubian\NoFramework\Template;
|
||||
|
||||
interface Renderer
|
||||
{
|
||||
/**
|
||||
* @param array<string, mixed> $data
|
||||
*/
|
||||
public function render(string $template, array $data = []): string;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue