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