summaryrefslogtreecommitdiff
path: root/vendor/doctrine/orm/src/Cache/EntityCacheKey.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/doctrine/orm/src/Cache/EntityCacheKey.php')
-rw-r--r--vendor/doctrine/orm/src/Cache/EntityCacheKey.php38
1 files changed, 38 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Cache/EntityCacheKey.php b/vendor/doctrine/orm/src/Cache/EntityCacheKey.php
new file mode 100644
index 0000000..095ddaa
--- /dev/null
+++ b/vendor/doctrine/orm/src/Cache/EntityCacheKey.php
@@ -0,0 +1,38 @@
1<?php
2
3declare(strict_types=1);
4
5namespace Doctrine\ORM\Cache;
6
7use function implode;
8use function ksort;
9use function str_replace;
10use function strtolower;
11
12/**
13 * Defines entity classes roles to be stored in the cache region.
14 */
15class EntityCacheKey extends CacheKey
16{
17 /**
18 * The entity identifier
19 *
20 * @var array<string, mixed>
21 */
22 public readonly array $identifier;
23
24 /**
25 * @param class-string $entityClass The entity class name. In a inheritance hierarchy it should always be the root entity class.
26 * @param array<string, mixed> $identifier The entity identifier
27 */
28 public function __construct(
29 public readonly string $entityClass,
30 array $identifier,
31 ) {
32 ksort($identifier);
33
34 $this->identifier = $identifier;
35
36 parent::__construct(str_replace('\\', '.', strtolower($entityClass) . '_' . implode(' ', $identifier)));
37 }
38}