shlink/bin/cli

12 lines
299 B
Text
Raw Normal View History

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