1
KnpGaufretteBundle
は、symfony 3.0プロジェクトでaws/aws-php-sdk
依存関係を使用しています。symfony 3とAWSクライアントスローAnnotationException( "@http" annotation)
サービスとしてAWSクレデンシャルとクライアントを定義しました。私はcomposer update
を実行したときに
<!-- 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>
werid部分が始まる、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
doens'tは何もしない注釈であるように見えます。
これを解決する方法はありますか?
文字列 '@http'は、そのインターフェイスのメソッドに関するドキュメントの一部であり、注釈ではありません。 – giaour
@giaourまあ、私は知っていますが、それでもSymfonyはそれを注釈として扱います。 – Kacper