Skip to content

Commit e9d169c

Browse files
committed
bug #14392 Enclose a value with ampersands in single quotes (Chi-teck)
This PR was submitted for the 5.x branch but it was merged into the 4.4 branch instead. Discussion ---------- Enclose a value with ampersands in single quotes This assignment does not work in bash becacuse `&` has special meaning. `SYMFONY_DEPRECATIONS_HELPER=max[total]=42&max[self]=0&verbose=0` Commits ------- 23164fe Enclose a value with ampersands in single quotes
2 parents 9953a11 + 23164fe commit e9d169c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/phpunit_bridge.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ You can have even finer-grained control by using other keys of the ``max``
234234
array, which are ``self``, ``direct``, and ``indirect``. The
235235
``SYMFONY_DEPRECATIONS_HELPER`` environment variable accepts a URL-encoded
236236
string, meaning you can combine thresholds and any other configuration setting,
237-
like this: ``SYMFONY_DEPRECATIONS_HELPER=max[total]=42&max[self]=0&verbose=0``
237+
like this: ``SYMFONY_DEPRECATIONS_HELPER='max[total]=42&max[self]=0&verbose=0'``
238238

239239
Internal deprecations
240240
.....................

0 commit comments

Comments
 (0)