| 1 | <?php |
||
| 19 | class Timer implements TimerInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * {@inheritdoc} |
||
| 23 | */ |
||
| 24 | 9 | public function start(InternalRequestInterface $internalRequest) |
|
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | 18 | public function stop(InternalRequestInterface $internalRequest) |
|
| 45 | |||
| 46 | /** |
||
| 47 | * @return float |
||
| 48 | */ |
||
| 49 | 18 | private function getTime() |
|
| 53 | } |
||
| 54 |