1
0
mirror of synced 2025-02-01 04:51:45 +03:00
doctrine2/tests/Doctrine/Tests/Mocks/CacheKeyMock.php

14 lines
187 B
PHP
Raw Normal View History

2013-02-13 20:42:13 -02:00
<?php
namespace Doctrine\Tests\Mocks;
use Doctrine\ORM\Cache\CacheKey;
class CacheKeyMock extends CacheKey
{
function __construct($hash)
{
$this->hash = $hash;
}
}