add perfomance chapters
This commit is contained in:
parent
43b94a3ee1
commit
4f2e469f2f
101 changed files with 8014 additions and 62 deletions
11
implementation/18-caching/src/Template/Renderer.php
Normal file
11
implementation/18-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