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