在我的 symfony 项目中,过去的编码员有这样的注释
/MyBundle/constraint/Annotation/Check.php
namespace Der\CpsBundle\Constraint\Annotation;
use Symfony\Component\Validator\Constraint;
class Check extends Constraint{
现在 symfony 文档说
http://docs.doctrine-project.org/projects/doctrine-common/en/latest/reference/annotations.html
如果你想定义你自己的注解,你只需要将它们分组到一个命名空间中,然后在 AnnotationRegistry 中注册这个命名空间。注解类必须包含一个类级别的文档块,其文本为@Annotation:
该名称空间是如何在哪个文件中注册的。我想知道