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.

17 line
250B

  1. <?php
  2. namespace Framework\View\Engine;
  3. use Framework\View\Manager;
  4. trait HasManager
  5. {
  6. protected Manager $manager;
  7. public function setManager(Manager $manager): static
  8. {
  9. $this->manager = $manager;
  10. return $this;
  11. }
  12. }

Powered by TurnKey Linux.