We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49cc99a commit a809666Copy full SHA for a809666
configuration/env_var_processors.rst
@@ -784,8 +784,8 @@ Symfony provides the following env var processors:
784
// config/services.php
785
$container->setParameter('suit', '%env(enum:App\Enum\Suit:CARD_SUIT)%');
786
787
- The value stored in the ``CARD_SUIT`` env var would be a string like `'spades'` but the
788
- application will use the ``Suit::Spdes`` enum value.
+ The value stored in the ``CARD_SUIT`` env var would be a string (e.g. ``'spades'``)
+ but the application will use the enum value (e.g. ``Suit::Spades``).
789
790
.. versionadded:: 6.2
791
0 commit comments