diff options
Diffstat (limited to 'vendor/doctrine/orm/src/Cache/EntityCacheKey.php')
-rw-r--r-- | vendor/doctrine/orm/src/Cache/EntityCacheKey.php | 38 |
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 | |||
3 | declare(strict_types=1); | ||
4 | |||
5 | namespace Doctrine\ORM\Cache; | ||
6 | |||
7 | use function implode; | ||
8 | use function ksort; | ||
9 | use function str_replace; | ||
10 | use function strtolower; | ||
11 | |||
12 | /** | ||
13 | * Defines entity classes roles to be stored in the cache region. | ||
14 | */ | ||
15 | class 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 | } | ||