| 1 | <?php | ||
| 13 | class CallableHandler implements Middleware | ||
| 14 | { | ||
| 15 | /** | ||
| 16 | * @var callable | ||
| 17 | */ | ||
| 18 | private $callable; | ||
| 19 | |||
| 20 | public function __construct(callable $callable) | ||
| 24 | |||
| 25 | /** | ||
| 26 | * @param object $command | ||
| 27 | * @param callable $next | ||
| 28 | * | ||
| 29 | * @return mixed | ||
| 30 | */ | ||
| 31 | public function execute($command, callable $next) | ||
| 35 | } | ||
| 36 |