#!/usr/bin/env php <?php use Interop\Container\ContainerInterface; use Symfony\Component\Console\Application as CliApp; /** @var ContainerInterface $container */ $container = include __DIR__ . '/../config/container.php'; $app = $container->get(CliApp::class); $app->run();