rector/stubs/Doctrine/Entity.php
2019-08-30 16:40:56 +02:00

25 lines
329 B
PHP

<?php
namespace Doctrine\ORM\Mapping;
if (interface_exists('Doctrine\ORM\Mapping\Entity')) {
return;
}
/**
* @Annotation
* @Target("CLASS")
*/
final class Entity implements Annotation
{
/**
* @var string
*/
public $repositoryClass;
/**
* @var boolean
*/
public $readOnly = false;
}