Skip to content

Instantly share code, notes, and snippets.

@kevinquinnyo
Created April 22, 2019 01:20
Show Gist options
  • Save kevinquinnyo/df2b551c07f721434b5e8efeb0c44ae1 to your computer and use it in GitHub Desktop.
Save kevinquinnyo/df2b551c07f721434b5e8efeb0c44ae1 to your computer and use it in GitHub Desktop.
disable xdebug for unit tests, re-enable it when done or interupted
#!/bin/bash
trap "sudo phpenmod xdebug" EXIT
sudo phpdismod xdebug
vendor/bin/phpunit "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment