Cron\Report\JobReport::getEndTime PHP 메소드

getEndTime() 공개 메소드

public getEndTime ( ) : float
리턴 float
    public function getEndTime()
    {
        return $this->endTime;
    }

Usage Example

예제 #1
0
 /**
  * Register the end of a job to the report.
  */
 protected function registerEnd()
 {
     if (is_null($this->report->getEndTime())) {
         $this->report->setEndTime(microtime(true));
     }
 }