1
0
mirror of synced 2024-12-15 07:36:03 +03:00
doctrine2/tests/Doctrine/Tests/Mocks/CacheKeyMock.php

14 lines
187 B
PHP
Raw Normal View History

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