We are using symfony's PhpUnitBridge component, to check for the use of deprecated code in our codebase.
We use a ignore file to silence some deprecations that we can't fix right now. However for every deprecations that is not ignored we want that the full stack trace will be shown.
Is it possible for to combine the ignore file feature with the display full stack trace feature? And how would the configuration look like?
It seems that you can combine multiple settings with an ampersand, e.g to use a baseline file and to also regenerate the baseline the setting would be generateBaseline=true&baselineFile=./tests/allowed.json
, however that seems to not work for the display full stack trace feature.