コード例 #1
0
ファイル: cron.php プロジェクト: evaluation-alex/web_hooks
 /**
  * Entry point for the back ground worker
  */
 public static function run()
 {
     $notifications = new Notifications();
     $subscriptions = new Subscriptions();
     $cron = new Cron($notifications, $subscriptions);
     $cron->pushNotifications();
 }