diff options
Diffstat (limited to 'vendor/doctrine/orm/src/Cache/TimestampCacheKey.php')
| -rw-r--r-- | vendor/doctrine/orm/src/Cache/TimestampCacheKey.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Cache/TimestampCacheKey.php b/vendor/doctrine/orm/src/Cache/TimestampCacheKey.php new file mode 100644 index 0000000..5aef4c5 --- /dev/null +++ b/vendor/doctrine/orm/src/Cache/TimestampCacheKey.php | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | <?php | ||
| 2 | |||
| 3 | declare(strict_types=1); | ||
| 4 | |||
| 5 | namespace Doctrine\ORM\Cache; | ||
| 6 | |||
| 7 | /** | ||
| 8 | * A key that identifies a timestamped space. | ||
| 9 | */ | ||
| 10 | class TimestampCacheKey extends CacheKey | ||
| 11 | { | ||
| 12 | /** @param string $space Result cache id */ | ||
| 13 | public function __construct(string $space) | ||
| 14 | { | ||
| 15 | parent::__construct($space); | ||
| 16 | } | ||
| 17 | } | ||
