mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 19:53:14 +01:00
18 lines
338 B
PHP
18 lines
338 B
PHP
<?php
|
|
|
|
namespace Doctrine\ORM\Mapping;
|
|
|
|
// mimics @see https://github.com/doctrine/orm/blob/master/lib/Doctrine/ORM/Annotation/HasLifecycleCallbacks.php
|
|
|
|
if (class_exists('Doctrine\ORM\Mapping\HasLifecycleCallbacks')) {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* @Annotation
|
|
* @Target("CLASS")
|
|
*/
|
|
final class HasLifecycleCallbacks implements Annotation
|
|
{
|
|
}
|