shlink/bin/cli

11 lines
275 B
Plaintext
Raw Normal View History

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