mirror of
https://github.com/doctrine/orm.git
synced 2026-04-03 04:42:24 +02:00
17 lines
315 B
PHP
17 lines
315 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Doctrine\ORM\Cache;
|
|
|
|
/**
|
|
* Defines entity / collection / query key to be stored in the cache region.
|
|
* Allows multiple roles to be stored in the same cache region.
|
|
*/
|
|
abstract class CacheKey
|
|
{
|
|
public function __construct(public readonly string $hash)
|
|
{
|
|
}
|
|
}
|