Sven Reichel
Sven Reichel
Looks great. @stasadev want to create a new PR? Your idea. Or update this one. Can't work on it atm.
For local tests in phpstorm ... - run phpunit with coverage (see ddev command) - in phpstorm hit `alt`+`ctrl`+`6` to select coverage file - select `clover.xml` from dev/tests directory You...
I'd like to disable profiling for PhpUnit tests and cron tasks, but have it enabled for all other requests. I don't want to manually turn xhgui on/off everytime. My idea...
For the xhgui-addon it was necessary to manually include the xhgui collector. See linked PR (etc/includes/ddev.xhgui.php) and check for 'NO_XHGUI'. I don't know if it works to add ... -...
```php if (getenv('IS_DDEV_PROJECT') && getenv('NO_XHGUI') !== '1') { if (file_exists($xhgui = '/mnt/ddev_config/xhgui/collector/xhgui.collector.php')) { require_once $xhgui; } } ``` For the addon I have used that in a bootstrapped file. In...
UnitTest requires a DB ... added in #4138
Core config is not the right place for frequently changing values, but its "common" practice. Having a method to bypass cache is a +1. I think most dont know about...
> > In my use case, I needed to get and update config value in a cron running constantly. > > It's up to you, but in my opinion, this...
Can you please add some more details? Step by step to reproduce. (?) In which table wrong positions occour? From reading it makes sense, but i want to verify/test it.
Can you please provide a PR?