9951 explained code solutions for 126 technologies


phpunitHow to run PHPUnit in quiet mode?


To run PHPUnit in quiet mode, use the --quiet flag.

Example

phpunit --quiet

This will run PHPUnit without any output.

Code explanation

  • phpunit: The command to run PHPUnit
  • --quiet: The flag to run PHPUnit in quiet mode

Helpful links

Edit this code on GitHub