11 lines
172 B
PHP
11 lines
172 B
PHP
|
<?php
|
||
|
|
||
|
namespace Doctrine\ORM\Proxy;
|
||
|
|
||
|
/**
|
||
|
* Marker interface for proxy classes.
|
||
|
*
|
||
|
* @author Roman Borschel <roman@code-factory.org>
|
||
|
* @since 2.0
|
||
|
*/
|
||
|
interface Proxy {}
|