Comment on page
Code Analysis & Testing
Apply coding standards to all application and tests files
app/vendor/bin/php-cs-fixer fix
npx eslint --fix app/resources/js/**/*.js
or to see the changes before applying
app/vendor/bin/php-cs-fixer fix --diff --dry-run
npx eslint app/resources/js/**/*.js
app/vendor/bin/psalm
app/vendor/bin/phpunit
app/vendor/bin/phpunit --coverage-text
or generate a more detailed HTML coverage report with
app/vendor/bin/phpunit --coverage-html .coverage