Catch CSV errors
[bdrem.git] / bin / bdrem.php
1 #!/usr/bin/env php
2 <?php
3 /**
4  * Script to start bdrem.
5  *
6  * PHP version 5
7  *
8  * @category  Tools
9  * @package   Bdrem
10  * @author    Christian Weiske <cweiske@cweiske.de>
11  * @copyright 2014 Christian Weiske
12  * @license   http://www.gnu.org/licenses/agpl.html GNU AGPL v3
13  * @link      http://cweiske.de/bdrem.htm
14  */
15 namespace bdrem;
16
17 if (file_exists(__DIR__ . '/../src/bdrem/Autoloader.php')) {
18     include_once __DIR__ . '/../src/bdrem/Autoloader.php';
19     Autoloader::register();
20 }
21 $cli = new Cli();
22 $cli->run();
23 ?>