HeaderLine.php
480 字节
<?php
namespace Lackoxygen\ShowDocGeneration\Annotations;
use Doctrine\Common\Annotations\Annotation\Required;
/**
* @Annotation
* @Target({"METHOD"})
* @Attributes({
@Attribute("key", type = "string"),
@Attribute("remark", type = "string"),
* })
*/
final class HeaderLine extends Annotation
{
/**
* @Required()
* @var string
*/
protected string $key = '';
/**
* @Required()
* @var string
*/
protected string $remark = '';
}