mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-19 07:40:49 +01:00
25 lines
364 B
PHP
25 lines
364 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Doctrine\ORM\Mapping;
|
|
|
|
if (class_exists('Doctrine\ORM\Mapping\CustomIdGenerator')) {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* @Annotation
|
|
* @Target("PROPERTY")
|
|
*/
|
|
final class CustomIdGenerator implements Annotation
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $class;
|
|
|
|
/**
|
|
* @var string[]
|
|
*/
|
|
public $arguments = [];
|
|
}
|