mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 03:35:01 +01:00
18 lines
238 B
PHP
18 lines
238 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Vich\UploaderBundle\Mapping\Annotation;
|
|
|
|
if (class_exists('Vich\UploaderBundle\Mapping\Annotation\Uploadable')) {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* @Annotation
|
|
* @Target({"CLASS"})
|
|
*/
|
|
class Uploadable
|
|
{
|
|
}
|