summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Utility/Time.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Utility/Time.php b/lib/Utility/Time.php
index aee1e6358..276a140cd 100644
--- a/lib/Utility/Time.php
+++ b/lib/Utility/Time.php
@@ -19,9 +19,9 @@ class Time
}
/**
- * @return int the current unix time in miliseconds
+ * @return string the current unix time in miliseconds
*/
- public function getMicroTime(): int
+ public function getMicroTime(): string
{
list($millisecs, $secs) = explode(" ", microtime());
return $secs . substr($millisecs, 2, 6);