diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-01-13 14:00:51 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-01-14 21:55:40 +0100 |
commit | 7ffd62bf955cac39123015a362ccd68ea16bb185 (patch) | |
tree | bfa27a75b4fe86983ea2d0ff76c8dd9b5404e745 /lib/public | |
parent | 1faef0c459a51a025f73f7eee46e5607ee6eedf5 (diff) | |
download | nextcloud-server-7ffd62bf955cac39123015a362ccd68ea16bb185.tar.gz nextcloud-server-7ffd62bf955cac39123015a362ccd68ea16bb185.zip |
Make the ITimeFactory strict + return types
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/AppFramework/Utility/ITimeFactory.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/AppFramework/Utility/ITimeFactory.php b/lib/public/AppFramework/Utility/ITimeFactory.php index eb65abf8501..7951d6ad8e6 100644 --- a/lib/public/AppFramework/Utility/ITimeFactory.php +++ b/lib/public/AppFramework/Utility/ITimeFactory.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); /** * @copyright Copyright (c) 2016, ownCloud, Inc. * @@ -21,7 +22,6 @@ * */ - namespace OCP\AppFramework\Utility; @@ -35,6 +35,6 @@ interface ITimeFactory { * @return int the result of a call to time() * @since 8.0.0 */ - public function getTime(); + public function getTime() : int; } |