| 1234567891011121314151617181920 |
- <?php
- class HandlerAction extends Action
- {
- protected $handler;
- public function __construct($path, $method, IHandler $handler)
- {
- parent::__construct($path, $method);
- $this->handler = $handler;
- }
- public function execute(): void
- {
- $this->handler->execute($this);
- }
- public function render(): void
- {}
- }
|