mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 19:53:14 +01:00
25 lines
329 B
PHP
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;
|
|
}
|