Description.php
303 字节
<?php
namespace Lackoxygen\ShowDocGeneration\Annotations;
/**
* @Annotation
* @Target({"METHOD"})
* @Attributes({
@Attribute("value", type = "string"),
* })
*/
final class Description extends Annotation
{
/**
* @Required()
* @var string
*/
protected string $value = '';
}