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