summaryrefslogtreecommitdiffstats
path: root/lib/Utility/Time.php
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-08-29 23:39:35 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2020-09-27 15:35:31 +0200
commitd00d1ab2a28f428223e52b17052c072c64784016 (patch)
treec019f85fb7ac67147dd43ca64b4ac3cda99832f7 /lib/Utility/Time.php
parent5687baca75d47dbdffd3de74e865ad2f71ef0cb7 (diff)
Create V2 mapper, Service and management commands
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
Diffstat (limited to 'lib/Utility/Time.php')
-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 739204f6d..aee1e6358 100644
--- a/lib/Utility/Time.php
+++ b/lib/Utility/Time.php
@@ -13,7 +13,7 @@ namespace OCA\News\Utility;
class Time
{
- public function getTime()
+ public function getTime(): int
{
return time();
}
@@ -21,7 +21,7 @@ class Time
/**
* @return int the current unix time in miliseconds
*/
- public function getMicroTime()
+ public function getMicroTime(): int
{
list($millisecs, $secs) = explode(" ", microtime());
return $secs . substr($millisecs, 2, 6);