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.

20 line
313B

  1. <?php
  2. namespace Framework\View;
  3. use Framework\View\Engine\Engine;
  4. class View
  5. {
  6. public function __construct(
  7. protected Engine $engine,
  8. public string $path,
  9. public array $data = [],
  10. ) {}
  11. public function __toString()
  12. {
  13. return $this->engine->render($this);
  14. }
  15. }

Powered by TurnKey Linux.