Пример #1
0
 /**
  * Return the next scheduled time given the class and method names of a scheduled task.
  *
  * @param string $className The name of the class that contains the scheduled task method.
  * @param string $methodName The name of the scheduled task method.
  * @param string|null $methodParameter Optional method parameter.
  * @return mixed int|bool The time in miliseconds when the scheduled task will be executed
  *                        next or false if it is not scheduled to run.
  */
 public function getScheduledTimeForMethod($className, $methodName, $methodParameter = null)
 {
     return $this->timetable->getScheduledTimeForMethod($className, $methodName, $methodParameter);
 }