mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-04 23:35:35 +08:00
19 lines
319 B
PHP
19 lines
319 B
PHP
<?php
|
|
|
|
|
|
namespace ZM\Annotation\Module;
|
|
|
|
use Doctrine\Common\Annotations\Annotation\Required;
|
|
use Doctrine\Common\Annotations\Annotation\Target;
|
|
|
|
/**
|
|
* Class InitBuffer
|
|
* @Annotation
|
|
* @Target("CLASS")
|
|
* @package ZM\Annotation\Module
|
|
*/
|
|
class InitBuffer
|
|
{
|
|
/** @var string @Required() */
|
|
public $buf_name;
|
|
} |