Files
zhamao-framework/src/Custom/Annotation/Example.php

21 lines
382 B
PHP
Raw Normal View History

2020-03-02 16:14:20 +08:00
<?php
namespace Custom\Annotation;
use Doctrine\Common\Annotations\Annotation\Target;
2020-08-31 10:11:06 +08:00
use ZM\Annotation\AnnotationBase;
2020-03-02 16:14:20 +08:00
use ZM\Annotation\Interfaces\CustomAnnotation;
/**
* Class CustomAnnotation
* @Annotation
* @Target("ALL")
* @package Custom\Annotation
*/
2020-08-31 10:11:06 +08:00
class Example extends AnnotationBase implements CustomAnnotation
2020-03-02 16:14:20 +08:00
{
/** @var string */
2020-09-29 15:07:43 +08:00
public $str = '';
2020-08-31 10:11:06 +08:00
}