I see an error message:
PHP Deprecated: The Symfony\Component\DependencyInjection\Definition::getFactoryClass method is deprecated since version 2.6 and will be removed in 3.0.
when running
composer update
composer run-script post-update-cmd
on my symfony 2.7 project.
I checked app/bootstrap.php.cache
error_reporting(error_reporting() & ~E_USER_DEPRECATED);
cli/php.ini
error_reporting = E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED & ~E_STRICT
Even though I see error_reporting() = 0 during debug, it still shows me those messages.
How to suppress Deprecated messages in Symfony 2.7?