shlink/bin/cli

11 lines
189 B
Text
Raw Normal View History

2016-04-16 13:57:11 +03:00
#!/usr/bin/env php
<?php
2017-12-27 17:37:26 +03:00
declare(strict_types=1);
2016-04-16 13:57:11 +03:00
use Symfony\Component\Console\Application;
/** @var Application $app */
$app = require __DIR__ . '/../config/cli-app.php';
$app->run();