diff options
Diffstat (limited to 'vendor/doctrine/orm/src/Cache/CacheKey.php')
| -rw-r--r-- | vendor/doctrine/orm/src/Cache/CacheKey.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Cache/CacheKey.php b/vendor/doctrine/orm/src/Cache/CacheKey.php new file mode 100644 index 0000000..970702c --- /dev/null +++ b/vendor/doctrine/orm/src/Cache/CacheKey.php | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | <?php | ||
| 2 | |||
| 3 | declare(strict_types=1); | ||
| 4 | |||
| 5 | namespace Doctrine\ORM\Cache; | ||
| 6 | |||
| 7 | /** | ||
| 8 | * Defines entity / collection / query key to be stored in the cache region. | ||
| 9 | * Allows multiple roles to be stored in the same cache region. | ||
| 10 | */ | ||
| 11 | abstract class CacheKey | ||
| 12 | { | ||
| 13 | public function __construct(public readonly string $hash) | ||
| 14 | { | ||
| 15 | } | ||
| 16 | } | ||
