aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-12-22 20:09:25 +0100
committerJoas Schilling <coding@schilljs.com>2023-03-03 15:37:13 +0100
commitc297f8ee96bce394fab1df48d203c1287b1f428a (patch)
tree76875696728c79ca903363c566acfd7bc64ba9c5 /lib/public
parentc5da4b8737a7463b1920ab20e5a73abd608f520e (diff)
downloadnextcloud-server-c297f8ee96bce394fab1df48d203c1287b1f428a.tar.gz
nextcloud-server-c297f8ee96bce394fab1df48d203c1287b1f428a.zip
feat(appframework): ⌚ Make ITimeFactory extend \PSR\Clock\ClockInterface
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/AppFramework/Utility/ITimeFactory.php22
1 files changed, 19 insertions, 3 deletions
diff --git a/lib/public/AppFramework/Utility/ITimeFactory.php b/lib/public/AppFramework/Utility/ITimeFactory.php
index 92101fd3848..7a6acf97b2d 100644
--- a/lib/public/AppFramework/Utility/ITimeFactory.php
+++ b/lib/public/AppFramework/Utility/ITimeFactory.php
@@ -3,6 +3,7 @@
declare(strict_types=1);
/**
+ * @copyright Copyright (c) 2022, Joas Schilling <coding@schilljs.com>
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
* @author Bernhard Posselt <dev@bernhard-posselt.com>
@@ -26,22 +27,37 @@ declare(strict_types=1);
*/
namespace OCP\AppFramework\Utility;
+use Psr\Clock\ClockInterface;
+
/**
- * Needed to mock calls to time()
+ * Use this to get a timestamp or DateTime object in code to remain testable
+ *
* @since 8.0.0
+ * @since 26.0.0 Extends the \Psr\Clock\ClockInterface interface
+ * @ref https://www.php-fig.org/psr/psr-20/#21-clockinterface
*/
-interface ITimeFactory {
+
+interface ITimeFactory extends ClockInterface {
/**
* @return int the result of a call to time()
* @since 8.0.0
+ * @deprecated 26.0.0 {@see ITimeFactory::now()}
*/
public function getTime(): int;
/**
* @param string $time
- * @param \DateTimeZone $timezone
+ * @param \DateTimeZone|null $timezone
* @return \DateTime
* @since 15.0.0
+ * @deprecated 26.0.0 {@see ITimeFactory::now()}
*/
public function getDateTime(string $time = 'now', \DateTimeZone $timezone = null): \DateTime;
+
+ /**
+ * @param \DateTimeZone $timezone
+ * @return static
+ * @since 26.0.0
+ */
+ public function withTimeZone(\DateTimeZone $timezone): static;
}