We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I was receiving:
The attribute 'factory-service' is not allowed.
From: aws_config.yml aws_service.yml
This relates to changes in version 2.7 that are now deprecated in Symfony3.
To fix:
<service id="aws_service" class="AwsService" factory-service="aws_factory" factory-method="get" abstract="true"> <argument type="service" id="aws"/> </service>
Needs to be changed to:
<service id="aws_service" class="AwsService" abstract="true"> <factory service="aws_factory" method="get"/> <argument type="service" id="aws"/> </service>
I was going to fork and PR but I think this might cause some BC breaks of Symfony <2.7.
Cheers Chris
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I was receiving:
From:
aws_config.yml
aws_service.yml
This relates to changes in version 2.7 that are now deprecated in Symfony3.
To fix:
Needs to be changed to:
I was going to fork and PR but I think this might cause some BC breaks of Symfony <2.7.
Cheers
Chris
The text was updated successfully, but these errors were encountered: