Files
zhamao-framework/src/Custom/Annotation/Example.php
2020-09-29 15:07:43 +08:00

21 lines
382 B
PHP

<?php
namespace Custom\Annotation;
use Doctrine\Common\Annotations\Annotation\Target;
use ZM\Annotation\AnnotationBase;
use ZM\Annotation\Interfaces\CustomAnnotation;
/**
* Class CustomAnnotation
* @Annotation
* @Target("ALL")
* @package Custom\Annotation
*/
class Example extends AnnotationBase implements CustomAnnotation
{
/** @var string */
public $str = '';
}