We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@sreichel reports issues with phpunit when running xhgui.collector.php is loaded. #33 (comment)
xhgui.collector.php
Laravel 11 with PHPunit 10 works fine but it does collect data which may slow down tests.
Consider adding further checks
if (file_exists("/mnt/ddev_config/xhgui/collector/xhgui.collector.php")) { require_once "/mnt/ddev_config/xhgui/collector/xhgui.collector.php"; } if (getenv('IS_DDEV_PROJECT') == 'true' && getenv('NO_XHGUI') !== '1') { if (file_exists($xhgui = '/mnt/ddev_config/xhgui/collector/xhgui.collector.php')) { require_once $xhgui; } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@sreichel reports issues with phpunit when running
xhgui.collector.php
is loaded.#33 (comment)
Laravel 11 with PHPunit 10 works fine but it does collect data which may slow down tests.
Solution
Consider adding further checks
The text was updated successfully, but these errors were encountered: