Current Path : /home/c/i/n/cinepatreb/billetterie/vendor/doctrine/orm/lib/Doctrine/ORM/Cache/ |
Current File : /home/c/i/n/cinepatreb/billetterie/vendor/doctrine/orm/lib/Doctrine/ORM/Cache/TimestampCacheKey.php |
<?php declare(strict_types=1); namespace Doctrine\ORM\Cache; /** * A key that identifies a timestamped space. */ class TimestampCacheKey extends CacheKey { /** * @param string $space Result cache id */ public function __construct($space) { $this->hash = (string) $space; } }