-
Notifications
You must be signed in to change notification settings - Fork 180
New issue
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
Symfony 3.4/4.0 support : KERNEL_DIR is replaced by KERNEL_CLASS #343
Comments
I'm also getting an other deprecation due to this bundle in SF 3.4, which is this one:
This is a lot easier to fix, BTW. I don't think that a bundle should support more than 2 major versions of Symfony at once, so we need a new major ASAP! Should we push forward #332 ad #338 ? |
+1 for this. Any news on wether the bundle is getting updated? |
Requiring SF 3.4 as minimum on the stable branch is not breaking according to semver. |
BTW, why do we need to override the |
According to #217 (comment):
So, do we still need it? What would be the use case for this? |
This is exactly what I was wondering. |
Ping @lsmith77 I quoted your explanation in a previous comment: #343 (comment) Could you please give your opinion about the need of |
I think the multiple kernel approach is pretty dead at this point, so imho we can drop it. |
Yep. It was used in the tests, but I think that @soullivaneuh solved that too in his latest PRs. |
According to : https://github.com/symfony/symfony/blob/master/UPGRADE-3.4.md#frameworkbundle
If I remove the KERNEL_DIR env variable from phpunit.xml.dist, I get the following deprecation warning :
Which, I think, are caused by this line : https://github.com/liip/LiipFunctionalTestBundle/blob/master/Test/WebTestCase.php#L77
I'm not sure what
getKernelClass
should do exactly ifKERNEL_CLASS
is available (autoloading or not for example?).The text was updated successfully, but these errors were encountered: