This repository was archived by the owner on Jan 29, 2020. It is now read-only.
This repository was archived by the owner on Jan 29, 2020. It is now read-only.
Question: Why is E_USER_DEPRECATED used in stead of E_DEPRECATED? #98
Closed
Description
In my production php.ini the error_reporting settings are:
; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
; Development Value: E_ALL
; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
; http://php.net/error-reporting
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
This does not filter the E_USER_DEPRECATED triggered in https://github.com/zendframework/zend-mvc/blob/master/src/Service/ServiceManagerConfig.php#L127