Failed Conditions
Push — master ( c6c43f...4678b5 )
by Maximo
03:05
created

cli/cli.php (1 issue)

1
<?php
0 ignored issues
show
End of line character is invalid; expected "\n" but found "\r\n"
Loading history...
2
3
use Gewaer\Bootstrap\Cli;
4
5
require_once __DIR__ . '/../library/Core/autoload.php';
6
7
$cli = new Cli();
8
$cli->setArgv(isset($argv) ? $argv : []);
9
$cli->setup();
10
$cli->run();
11