add chapter 12 solutions
This commit is contained in:
parent
05f444152e
commit
0cd0b9def0
23 changed files with 1998 additions and 0 deletions
11
implementation/12/src/Template/Renderer.php
Normal file
11
implementation/12/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