You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
222B

  1. <?php
  2. namespace Framework\View\Engine;
  3. use Framework\View\Manager;
  4. use Framework\View\View;
  5. interface Engine
  6. {
  7. public function render(View $view): string;
  8. public function setManager(Manager $manager): static;
  9. }

Powered by TurnKey Linux.