The README.md file states:
Note for Symfony >=3.3 users
If you use Symfony at version 3.3 or superior, you do not need to use this bundle
as all the features were ported in Symfony. You can learn more about it in the
Symfony blog or in the Symfony documentation.
However, I find this not to be true. When upgrading to Sf3.3 and removing this bundle, any actions I have defined now stopped working, even with autowiring enabled. The root cause is that no services are passed to the class constructors anymore, whilst with this bundle, they do.
Unfortunately, both the blog and documentation links in that section do not provide information on how to upgrade.
I have 2 questions:
- Does Sf3.3 completely implement the features of this bundle?
- If so, what is the upgrade procedure?
The README.md file states:
However, I find this not to be true. When upgrading to Sf3.3 and removing this bundle, any actions I have defined now stopped working, even with
autowiringenabled. The root cause is that no services are passed to the class constructors anymore, whilst with this bundle, they do.Unfortunately, both the blog and documentation links in that section do not provide information on how to upgrade.
I have 2 questions: