swoole-framwork/core/annotations/Bean.php
2024-05-21 14:33:56 +08:00

13 lines
176 B
PHP

<?php
//类注释 Bean只能打在类上 用于类的自动加载
namespace Core\annotations;
/**
* @Annotation
* @Target({"CLASS"})
*/
class Bean
{
public $name;
}