15 lines
203 B
PHP
15 lines
203 B
PHP
<?php
|
|
|
|
namespace hg\apidoc\annotation;
|
|
|
|
use Doctrine\Common\Annotations\Annotation;
|
|
|
|
/**
|
|
* Url
|
|
* @package hg\apidoc\annotation
|
|
* @Annotation
|
|
* @Target({"METHOD"})
|
|
*/
|
|
class Url extends Annotation
|
|
{}
|