Scientist\Result::getStartTime PHP Method

getStartTime() public method

Get the callback execution start time.
public getStartTime ( ) : float
return float
    public function getStartTime()
    {
        return $this->startTime;
    }

Usage Example

Ejemplo n.º 1
0
 public function test_result_can_have_start_time()
 {
     $r = new Result();
     $r->setStartTime(123);
     $this->assertEquals(123, $r->getStartTime());
 }