我尝试提取翻译,但有许多错误
php bin/console translation:extract pt --dir=./src/ --output-dir=./app/Resources/translations
[Semantical Error] The annotation "@created" in class InvoiceBundle\Service\CodeGeneratorService was never imported. Did you maybe forget to add a "use" statement for this annotation?
[Semantical Error] The annotation "@optional" in property Ups\Entity\Tradeability\TariffInfo::$detailId was never imported. Did you maybe forget to add a "use" statement for this annotation?可以忽略未知的注解吗?
"jms/translation-bundle": "^1.3",
"nikic/php-parser": "v1.4.1",发布于 2018-05-19 15:51:01
您可以尝试使用Doctrine IgnoreAnnotation,看看它是否适合您的目的。
use Doctrine\Common\Annotations\Annotation\IgnoreAnnotation;
/**
* @IgnoreAnnotation("created")
* @IgnoreAnnotation("optional")
*/https://stackoverflow.com/questions/50422686
复制相似问题