File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 11UPGRADE FROM 2.6 to 2.7
22=======================
33
4+ Global
5+ ------
6+
7+ * ` E_USER_DEPRECATED ` warnings -
8+ ` trigger_error('... is deprecated ...', E_USER_DEPRECATED) ` -
9+ are now triggered when using all deprecated functionality.
10+ To avoid filling up error logs, you may need to add
11+ ` ~E_USER_DEPRECATED ` to your ` error_reporting ` setting in
12+ ` php.ini ` to * not* add these errors to your log.
13+
14+ In the Symfony Framework, ` ~E_USER_DEPRECATED ` is added to
15+ ` bootstrap.php.cache ` automatically, but you need at least
16+ version ` 2.3.14 ` or ` 3.0.21 ` of the
17+ [ SensioDistributionBundle] ( https://github.com/sensiolabs/SensioDistributionBundle ) .
18+ So, you may need to upgrade:
19+
20+ ``` bash
21+ composer update sensio/distribution-bundle
22+ ```
23+
24+ The [ phpunit-bridge] ( https://github.com/symfony/phpunit-bridge )
25+ was introduced to silence deprecation warnings while running your
26+ tests and give you a report of deprecated function calls.
27+
428Router
529------
630
You can’t perform that action at this time.
0 commit comments