選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

20 行
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.