Does anyone know the correct command line to generate a code coverage file on a PHP project? I've already installed the XDebug tool.
In the official documentation from PHPUnit, I found the following command line, but it is not working:
phpunit --coverage-text=<file>
where is the file where output is going to be stored.
I don't have any tests yet, but is there a way to generate a report file, even though there are no tests in the project?