File size: 541 Bytes
d2897cd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env php
<?php

use Mautic\CoreBundle\Console\Output\ConsoleDatetimeOutput;
use Symfony\Component\Console\Input\ArgvInput;

require_once __DIR__.'/../vendor/autoload.php';

$input  = new ArgvInput();
$output = (false !== $input->getParameterOption(['--no-interaction', '-n'])) ? new ConsoleDatetimeOutput() : null;

$reflection  = new \ReflectionClass(AppKernel::class);
$project_dir = dirname($reflection->getFileName(), 2);

$application = include $project_dir.'/app/console-application.php';
$application->run($input, $output);