Failed Conditions
Pull Request — master (#9)
by Maximo
03:21
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