Handle space after "-x" option.
[shpub.git] / bin / shpub.php
1 #!/usr/bin/env php
2 <?php
3 namespace shpub;
4
5 if (file_exists(__DIR__ . '/../src/shpub/Autoloader.php')) {
6     include_once __DIR__ . '/../src/shpub/Autoloader.php';
7     Autoloader::register();
8 }
9 $cli = new Cli();
10 $cli->run();
11 ?>