Files
zhamao-framework/src/ZM/Annotation/Module/SaveBuffer.php
whale 4af90e00ff Add other config file loader.
Fix SaveBuffer bug.
2020-03-07 17:13:56 +08:00

25 lines
404 B
PHP

<?php
namespace ZM\Annotation\Module;
use Doctrine\Common\Annotations\Annotation\Required;
use Doctrine\Common\Annotations\Annotation\Target;
/**
* Class SaveBuffer
* @Annotation
* @Target("CLASS")
* @package ZM\Annotation\Module
*/
class SaveBuffer
{
/**
* @var string
*@Required()
*/
public $buf_name;
/** @var string $sub_folder */
public $sub_folder = null;
}