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
Controller does not have container property which is being accessed in the code. #6842 introduced access to container property of the BaseController. At this point Controller did not have container property anymore since the inheritance from the Base Symfony Controller was removed in #6615. These changes were incompatible and now any generated php-symfony code will fail should any exception be thrown down the stack and caught by the Controller. Example of an invalid Controller: https://github.com/swagger-api/swagger-codegen/blob/master/samples/server/petstore/php-symfony/SymfonyBundle-php/Controller/Controller.php#L149
container
BaseController
2.3.0, 2.3.1, master
Any swagger file, example: https://github.com/swagger-api/swagger-codegen/blob/master/modules/swagger-codegen/src/test/resources/2_0/petstore.yaml
java -jar swagger-codegen-cli.jar generate -i /api/swagger.yml -l php-symfony -o /src
Any generated php-symfony code is invalid now and will fail should any exception be thrown.
Issue introduced in: #6842 Related PR (removal of BaseController inheritance): #6615
Fixed in #8338
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
Controller does not have
container
property which is being accessed in the code.#6842 introduced access to
container
property of theBaseController
. At this point Controller did not havecontainer
property anymore since the inheritance from the Base Symfony Controller was removed in #6615. These changes were incompatible and now any generated php-symfony code will fail should any exception be thrown down the stack and caught by the Controller.Example of an invalid Controller: https://github.com/swagger-api/swagger-codegen/blob/master/samples/server/petstore/php-symfony/SymfonyBundle-php/Controller/Controller.php#L149
Swagger-codegen version
2.3.0, 2.3.1, master
Swagger declaration file content or url
Any swagger file, example: https://github.com/swagger-api/swagger-codegen/blob/master/modules/swagger-codegen/src/test/resources/2_0/petstore.yaml
Command line used for generation
java -jar swagger-codegen-cli.jar generate -i /api/swagger.yml -l php-symfony -o /src
Steps to reproduce
Any generated php-symfony code is invalid now and will fail should any exception be thrown.
Related issues/PRs
Issue introduced in: #6842
Related PR (removal of BaseController inheritance): #6615
Suggest a fix/enhancement
Fixed in #8338
The text was updated successfully, but these errors were encountered: