1
0
Fork 0
mirror of synced 2025-04-05 06:03:34 +03:00
service-bundle/Tests/Fixtures/bin/console
2021-03-31 11:00:48 +03:00

9 lines
327 B
PHP

#!/usr/bin/env php
<?php
require_once __DIR__ . '/../../../vendor/autoload.php';
$input = new Symfony\Component\Console\Input\ArgvInput();
$kernel = new RetailCrm\ServiceBundle\Tests\Fixtures\App\Kernel('test', true);
$application = new Symfony\Bundle\FrameworkBundle\Console\Application($kernel);
$application->run($input);