This repository was archived by the owner on Jun 12, 2025. It is now read-only.
ConsoleMiddleware
Added console middleware for input and output interface from Symfony/Console. Output is an instance for SymfonyStyle.
$app->task(function ($context) {
/** @var \Symfony\Component\Console\Style\SymfonyStyle $output */
$output = $this->output;
$output->title("Hello world");
});