我即将KnpGaufretteBundle
在我的 Symfony 3.0 项目中使用,它使用aws/aws-php-sdk
依赖项。
我已经配置了我的服务,将 AWS 凭证和客户端定义为服务。
<!-- AWS -->
<service id="app.aws_credentials" class="Aws\Credentials\Credentials">
<argument>%aws_access_key_id%</argument>
<argument>%aws_secret_access_key%</argument>
</service>
<service id="app.aws_s3.client" class="Aws\S3\S3Client">
<argument type="collection">
<argument key="region">%aws_s3_region%</argument>
<argument key="version">%aws_sdk_version%</argument>
<argument key="credentials" type="service" id="app.aws_credentials"/>
</argument>
</service>
奇怪的部分在我运行时开始composer update
,cache:clear
失败并抛出:
[Doctrine\Common\Annotations\AnnotationException]
[Semantical Error] The annotation "@http" in method Aws\AwsClientInterface::getCommand() was never imported. Did you maybe forget to add a "use" statement for this annotation?
@http
似乎不是做任何事情的注释。
任何想法如何解决这个问题?