Test Failed
Push — master ( c223c8...a9e334 )
by Maximo
01:54
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($argv);
9
$cli->setup();
10
$cli->run();
11