Example #1
0
 /**
  * Receives a single cron job by its name from the crontab
  *
  * @param String $name
  * @return null|Enlight_Components_Cron_Job
  */
 public function getJobByName($name)
 {
     $retVal = $this->adapter->getJobByName((string) $name);
     if (empty($retVal)) {
         return null;
     }
     return $retVal;
 }