mirror of
https://github.com/doctrine/orm.git
synced 2026-04-27 16:33:40 +02:00
073f2aa891
It will make fuzzy matchers more efficient, and configuration files more readable. - lib/Doctrine/ORM becomes just src - tests/Doctrine/ becomes just tests
17 lines
236 B
PHP
17 lines
236 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Doctrine\ORM\Cache;
|
|
|
|
/**
|
|
* Cache entry interface
|
|
*
|
|
* <b>IMPORTANT NOTE:</b>
|
|
*
|
|
* Fields of classes that implement CacheEntry are public for performance reason.
|
|
*/
|
|
interface CacheEntry
|
|
{
|
|
}
|