File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -827,7 +827,8 @@ character (``.``)::
827
827
828
828
$node = $treeBuilder->buildTree();
829
829
$children = $node->getChildren();
830
- $path = $children['driver']->getPath();
830
+ $childChildren = $children['connection']->getChildren();
831
+ $path = $childChildren['driver']->getPath();
831
832
// $path = 'database.connection.driver'
832
833
833
834
Use the ``setPathSeparator() `` method on the config builder to change the path
@@ -838,7 +839,8 @@ separator::
838
839
$treeBuilder->setPathSeparator('/');
839
840
$node = $treeBuilder->buildTree();
840
841
$children = $node->getChildren();
841
- $path = $children['driver']->getPath();
842
+ $childChildren = $children['connection']->getChildren();
843
+ $path = $childChildren['driver']->getPath();
842
844
// $path = 'database/connection/driver'
843
845
844
846
Processing Configuration Values
Original file line number Diff line number Diff line change @@ -268,8 +268,9 @@ Renders any errors for the given field.
268
268
269
269
.. caution ::
270
270
271
- In the :ref: `error messages of Bootstrap 5 Form Theme <reference-forms-bootstrap5-error-messages >`,
272
- ``form_errors() `` is already included in ``form_label() ``.
271
+ In the Bootstrap 4 form theme, ``form_errors() `` is already included in
272
+ ``form_label() ``. Read more about this in the
273
+ :ref: `Bootstrap 4 theme documentation <reference-forms-bootstrap5-error-messages >`.
273
274
274
275
.. _reference-forms-twig-widget :
275
276
Original file line number Diff line number Diff line change @@ -286,4 +286,4 @@ the ``monolog.processor`` tag:
286
286
->addTag('monolog.processor', ['channel' => 'main']);
287
287
288
288
.. _`Monolog` : https://github.com/Seldaek/monolog
289
- .. _`built-in Monolog processors` : https://github.com/Seldaek/monolog/tree/master /src/Monolog/Processor
289
+ .. _`built-in Monolog processors` : https://github.com/Seldaek/monolog/tree/main /src/Monolog/Processor
Original file line number Diff line number Diff line change @@ -284,6 +284,8 @@ type:
284
284
285
285
.. include :: /reference/forms/types/options/attr.rst.inc
286
286
287
+ .. include :: /reference/forms/types/options/by_reference.rst.inc
288
+
287
289
.. include :: /reference/forms/types/options/data.rst.inc
288
290
289
291
.. include :: /reference/forms/types/options/disabled.rst.inc
You can’t perform that action at this time.
0 commit comments