shlink/bin/cli
2016-07-05 23:25:39 +02:00

10 lines
275 B
PHP
Executable file

#!/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();