Scientist\Result::getEndTime PHP 메소드

getEndTime() 공개 메소드

Get the callback execution end time.
public getEndTime ( ) : float
리턴 float
    public function getEndTime()
    {
        return $this->endTime;
    }

Usage Example

예제 #1
0
 public function test_result_can_have_end_time()
 {
     $r = new Result();
     $r->setEndTime(123);
     $this->assertEquals(123, $r->getEndTime());
 }