Created script to update an already existing system

This commit is contained in:
Alejandro Celaya
2016-08-19 15:50:08 +02:00
parent ea083e30b6
commit 5f0baab2ac
6 changed files with 45 additions and 16 deletions

View File

@@ -1,4 +1,11 @@
#!/usr/bin/env php
<?php
use Interop\Container\ContainerInterface;
use Symfony\Component\Console\Application as CliApp;
include 'cli.php';
/** @var ContainerInterface $container */
$container = include __DIR__ . '/../config/container.php';
/** @var CliApp $app */
$app = $container->get(CliApp::class);
$app->run();