mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 15:02:22 +01:00
It will make fuzzy matchers more efficient, and configuration files more readable. - lib/Doctrine/ORM becomes just src - tests/Doctrine/ becomes just tests
18 lines
309 B
PHP
18 lines
309 B
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)
|
|
{
|
|
parent::__construct((string) $space);
|
|
}
|
|
}
|