1
0
Fork 0
mirror of https://github.com/shlinkio/shlink.git synced 2025-03-20 23:22:39 +03:00
shlink/bin/cli.php

11 lines
280 B
PHP
Raw Normal View History

2016-08-15 09:21:14 +02:00
<?php
use Interop\Container\ContainerInterface;
use Symfony\Component\Console\Application as CliApp;
/** @var ContainerInterface $container */
$container = include __DIR__ . '/../config/container.php';
/** @var CliApp $app */
$app = $container->get(CliApp::class);
$app->run();