updated StopwatchEvent phpdoc due to the additional of optional float precision introduced in 0db8d7fb6a

This commit is contained in:
Lukas Kahwe Smith 2018-02-17 15:55:25 +01:00
parent 7bcccefb60
commit 8278a47caa
No known key found for this signature in database
GPG Key ID: D859E62434DF44F7

View File

@ -150,7 +150,7 @@ class StopwatchEvent
/**
* Gets the relative time of the start of the first period.
*
* @return int The time (in milliseconds)
* @return int|float The time (in milliseconds)
*/
public function getStartTime()
{
@ -160,7 +160,7 @@ class StopwatchEvent
/**
* Gets the relative time of the end of the last period.
*
* @return int The time (in milliseconds)
* @return int|float The time (in milliseconds)
*/
public function getEndTime()
{
@ -172,7 +172,7 @@ class StopwatchEvent
/**
* Gets the duration of the events (including all periods).
*
* @return int The duration (in milliseconds)
* @return int|float The duration (in milliseconds)
*/
public function getDuration()
{