<?php

declare(strict_types=1);

namespace Doctrine\ORM\Proxy;

use Doctrine\Common\Proxy\Proxy as BaseProxy;

/**
 * Interface for proxy classes.
 *
 * @deprecated 2.7 This interface is being removed from the ORM and won't have any replacement, proxies will no longer implement it.
 */
interface Proxy extends BaseProxy
{
}
