swoole-framwork/core/annotations/Bean.php
2024-05-20 11:51:07 +08:00

13 lines
159 B
PHP

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