Remark.php
309 字节
<?php
namespace Lackoxygen\ShowDocGeneration\Annotations;
use Doctrine\Common\Annotations\Annotation\Required;
/**
* @Annotation
* @Target({"METHOD"})
* @Attributes({})
*/
final class Remark extends Annotation
{
/**
* @Required()
* @var string
*/
protected string $value = '';
}