summaryrefslogtreecommitdiff
path: root/vendor/doctrine/orm/src/Cache/TimestampCacheKey.php
blob: 5aef4c5a05c7f9f414001efea906b118a675dbd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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(string $space)
    {
        parent::__construct($space);
    }
}