@@ -53,13 +53,11 @@ out all the application users.
53
53
handle_all_throwables
54
54
~~~~~~~~~~~~~~~~~~~~~
55
55
56
- **type **: ``boolean `` **default **: ``false ``
56
+ **type **: ``boolean `` **default **: ``true ``
57
57
58
- If set to ``true ``, the Symfony kernel will catch all ``\Throwable `` exceptions
58
+ When set to ``true ``, the Symfony kernel will catch all ``\Throwable `` exceptions
59
59
thrown by the application and will turn them into HTTP responses.
60
60
61
- Starting from Symfony 7.0, the default value of this option will be ``true ``.
62
-
63
61
.. _configuration-framework-http_cache :
64
62
65
63
http_cache
@@ -1575,11 +1573,13 @@ To see a list of all available storages, run:
1575
1573
handler_id
1576
1574
..........
1577
1575
1578
- **type **: ``string `` **default **: ``session.handler.native_file ``
1576
+ **type **: ``string `` | ``null `` **default **: ``null ``
1577
+
1578
+ By default at ``null `` if ``framework.session.save_path `` is not set.
1579
+ The session handler configured by php.ini is used, unless option
1580
+ ``framework.session.save_path `` is used, in which case the default is to store sessions
1581
+ using the native file session handler.
1579
1582
1580
- The service id or DSN used for session storage. The default value ``'session.handler.native_file' ``
1581
- will let Symfony manage the sessions itself using files to store the session metadata.
1582
- Set it to ``null `` to use the native PHP session mechanism.
1583
1583
It is possible to :ref: `store sessions in a database <session-database >`,
1584
1584
and also to configure the session handler with a DSN:
1585
1585
@@ -1844,7 +1844,7 @@ If not set, ``php.ini``'s `session.sid_bits_per_character`_ directive will be re
1844
1844
save_path
1845
1845
.........
1846
1846
1847
- **type **: ``string `` or ``null `` **default **: ``%kernel.cache_dir%/sessions ``
1847
+ **type **: ``string `` | ``null `` **default **: ``%kernel.cache_dir%/sessions ``
1848
1848
1849
1849
This determines the argument to be passed to the save handler. If you choose
1850
1850
the default file handler, this is the path where the session files are created.
@@ -2940,7 +2940,7 @@ php_errors
2940
2940
log
2941
2941
...
2942
2942
2943
- **type **: ``boolean| int `` **default **: ``%kernel.debug% ``
2943
+ **type **: ``boolean `` | `` int `` **default **: ``true ``
2944
2944
2945
2945
Use the application logger instead of the PHP logger for logging PHP errors.
2946
2946
When an integer value is used, it also sets the log level. Those integer
0 commit comments