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