E-learning-Server/cli/uelearning.php
2014-07-28 21:38:25 -07:00

18 lines
407 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env php
<?php
// set to run indefinitely if needed
set_time_limit(0);
/* Optional. Its better to do it in the php.ini file */
date_default_timezone_set('America/Los_Angeles');
// include the composer autoloader
require_once __DIR__ . '/vendor/autoload.php';
// import the Symfony Console Application
use Symfony\Component\Console\Application;
$app = new Application();
$app->run();
?>