summaryrefslogtreecommitdiff
path: root/vendor/doctrine/orm/src/Cache/TimestampCacheEntry.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/doctrine/orm/src/Cache/TimestampCacheEntry.php')
-rw-r--r--vendor/doctrine/orm/src/Cache/TimestampCacheEntry.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Cache/TimestampCacheEntry.php b/vendor/doctrine/orm/src/Cache/TimestampCacheEntry.php
new file mode 100644
index 0000000..60c9175
--- /dev/null
+++ b/vendor/doctrine/orm/src/Cache/TimestampCacheEntry.php
@@ -0,0 +1,29 @@
1<?php
2
3declare(strict_types=1);
4
5namespace Doctrine\ORM\Cache;
6
7use function microtime;
8
9class TimestampCacheEntry implements CacheEntry
10{
11 public readonly float $time;
12
13 public function __construct(float|null $time = null)
14 {
15 $this->time = $time ?? microtime(true);
16 }
17
18 /**
19 * Creates a new TimestampCacheEntry
20 *
21 * This method allow Doctrine\Common\Cache\PhpFileCache compatibility
22 *
23 * @param array<string,float> $values array containing property values
24 */
25 public static function __set_state(array $values): TimestampCacheEntry
26 {
27 return new self($values['time']);
28 }
29}