. */ namespace Doctrine\ORM\Cache; /** * Defines entity / collection key to be stored in the cache region. * Allows multiple roles to be stored in the same cache region. * * @since 2.5 * @author Fabio B. Silva */ abstract class CacheKey { /** * @var string Unique identifier */ public $hash; }