SSLTrack::getRow PHP Method

getRow() public method

public getRow ( )
    public function getRow()
    {
        return $this->row;
    }

Usage Example

 protected function transitionFromNewToSkipped(SSLTrack $track)
 {
     $this->max_row = max($track->getRow(), $this->max_row);
     $this->track = null;
     $this->status = $track->getStatus();
     // don't touch start time
     $this->end_time = time();
     // don't touch previous track
 }
All Usage Examples Of SSLTrack::getRow