コード例 #1
0
ファイル: Manager.php プロジェクト: nvdnkpr/Enlight
 /**
  * Returns the next cron job who is due to execute
  *
  * @return null|Enlight_Components_Cron_Job
  */
 public function getNextJob()
 {
     $retVal = $this->_adapter->getNextJob();
     if (empty($retVal)) {
         return null;
     }
     return $retVal;
 }
コード例 #2
0
ファイル: Manager.php プロジェクト: nhp/shopware-4
 /**
  * Returns the next cron job who is due to execute
  *
  * @return null|Enlight_Components_Cron_Job
  */
 public function getNextJob()
 {
     return $this->adapter->getNextJob();
 }
コード例 #3
0
ファイル: Manager.php プロジェクト: GerDner/luck-docker
 /**
  * Returns the next cron job who is due to execute
  *
  * @param bool $force
  * @return null|Enlight_Components_Cron_Job
  */
 public function getNextJob($force = false)
 {
     return $this->adapter->getNextJob($force);
 }