. */ namespace Doctrine\ORM\Mapping; /** * @Annotation * @Target("CLASS") */ final class Entity implements Annotation { /** @var string */ public $repositoryClass; /** @var boolean */ public $readOnly = false; }