You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am not sure I understand the report. The statement checks if the extension is NOT loaded. But you say that you have the extension so you shouldn't see the deprecation, right?
Uh oh!
There was an error while loading. Please reload this page.
Symfony version(s) affected
7.3.0-RC1
Description
This problem had been observed on version 7.3.0-RC1 but seem to exists on 7.4 and since 6.3 (I didn't search further down this version).
It seem to be caused by the check of \extension_loaded('intl') AND \defined('PHPUNIT_COMPOSER_INSTALL') right here : https://github.com/symfony/symfony/blob/7.4/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php#L341
I don't think this is a wanted deprecation notice even though tests should be mandatory and so PHPUnit installed, but it could happened.
How to reproduce
Possible Solution
Just check for \extension_loaded('intl') instead of \extension_loaded('intl') AND \defined('PHPUNIT_COMPOSER_INSTALL')
Additional Context
Dockerfile used.
composer.json used :
The text was updated successfully, but these errors were encountered: