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