Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions components/config/definition.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@ reflect the real structure of the configuration values::
->scalarNode('default_connection')
->defaultValue('mysql')
->end()
->stringNode('username')
->defaultValue('root')
->end()
->stringNode('password')
->defaultValue('root')
->end()
->end()
;

Expand All @@ -100,6 +106,7 @@ node definition. Node types are available for:
* scalar (generic type that includes booleans, strings, integers, floats
and ``null``)
* boolean
* string
* integer
* float
* enum (similar to scalar, but it only allows a finite set of values)
Expand Down
Loading