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

19 lines
319 B
PHP
Raw Normal View History

2020-03-02 16:14:20 +08:00
<?php
namespace Custom\Annotation;
use Doctrine\Common\Annotations\Annotation\Target;
use ZM\Annotation\Interfaces\CustomAnnotation;
/**
* Class CustomAnnotation
* @Annotation
* @Target("ALL")
* @package Custom\Annotation
*/
class Example implements CustomAnnotation
{
/** @var string */
public $str;
}