mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-03 14:55:36 +08:00
21 lines
382 B
PHP
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 = '';
|
|
}
|