14 lines
187 B
PHP
14 lines
187 B
PHP
|
<?php
|
||
|
|
||
|
namespace Doctrine\Tests\Mocks;
|
||
|
|
||
|
use Doctrine\ORM\Cache\CacheKey;
|
||
|
|
||
|
class CacheKeyMock extends CacheKey
|
||
|
{
|
||
|
|
||
|
function __construct($hash)
|
||
|
{
|
||
|
$this->hash = $hash;
|
||
|
}
|
||
|
}
|