1
0
mirror of synced 2025-01-19 23:11:41 +03:00
doctrine2/tests/Doctrine/Tests/Mocks/CacheEntryMock.php

14 lines
173 B
PHP
Raw Normal View History

2013-02-13 20:42:13 -02:00
<?php
namespace Doctrine\Tests\Mocks;
use Doctrine\ORM\Cache\CacheEntry;
2013-10-23 15:46:45 -04:00
/**
* Cache entry mock
*/
2013-02-13 20:42:13 -02:00
class CacheEntryMock extends \ArrayObject implements CacheEntry
{
2013-10-17 12:11:56 -04:00
}