Example #1
0
File: Cron.php Project: rezon/sugi
 /**
  * Creates an instance of Cron and executes it immediately
  * 
  * @param array $config
  */
 public static function start($config = array())
 {
     $cron = new self($config);
     $cron->proceed();
 }