EngineInterface.php 179 B

123456789
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\View\Engine;
  4. interface EngineInterface
  5. {
  6. public function render(string $template, array $data, array $config): string;
  7. }