| 1 | <?php |
||
| 5 | class EndPoint |
||
| 6 | { |
||
| 7 | /** @var callable */ |
||
| 8 | protected $handler; |
||
| 9 | /** @var array */ |
||
| 10 | protected $args = []; |
||
| 11 | |||
| 12 | |||
| 13 | 30 | public function __construct(callable $handler, array $args = []) |
|
| 18 | |||
| 19 | 7 | public function __invoke() |
|
| 23 | |||
| 24 | 2 | public function setArgs(array $args = []) |
|
| 29 | |||
| 30 | 1 | public function getArgs() : array |
|
| 34 | } |
||
| 35 |