shlink/bin/cli

11 lines
283 B
Plaintext
Raw Normal View History

2016-04-16 05:57:11 -05:00
#!/usr/bin/env php
<?php
2017-12-27 08:37:26 -06:00
declare(strict_types=1);
2019-08-12 11:59:02 -05:00
use Psr\Container\ContainerInterface;
use Symfony\Component\Console\Application as CliApp;
2016-04-16 05:57:11 -05:00
/** @var ContainerInterface $container */
$container = include __DIR__ . '/../config/container.php';
$container->get(CliApp::class)->run();