Richard van Laak
Richard van Laak
@micossow curious to see the PR via which this ticket was marked as completed, can you possibly reference it here?
It would be great to when deprecating methods/classes be able to link to [a related ADR file](https://adr.github.io/).
I just started to use https://github.com/civocr/nexmo-php-lib That lib had composer support from the beginning ;-)
@Aeliot-Tm would you consider such code coverage baseline a blocker for getting this PR in a mergeable state? or could it be handled through a follow-up?
@ramsey any reason why both PHPStan and Psalm as static code analysis tools are added? Yes they can capture marginally different things, but solely starting with PHPStan with a baseline...
While debugging I noticed that Wordpress error_reporting is accepting way more than the Symfony error_reporting does. The Wordpress strategy is more like "hide all errors, if-crappy-code-is-working==stable" where the Symfony strategy...
Another clue as result of the following code snippet: ``` global $shortcode_tags; do_shortcode($content); var_dump($shortcode_tags); ``` No results on the $content, it seems that Symfony / Wordpress emptied the global params...
Damn terrible global parameters. Defining them already in the wp-config.php file is the solution for this problem. So, just add the following line to the wp-config.php will make them function...
The problem what I was facing, was that none of my plugins that were using shorttags functioned. Diving into the wordpress core-code resulted in [this comment](https://github.com/kayue/WordpressBundle/issues/12#issuecomment-12494927), so I found out...
I will test your proposed fix and will commit an issue when you're right...