From 059fc543de951b87ff3b71b811d030e6c1877f6c Mon Sep 17 00:00:00 2001 From: jrfnl Date: Tue, 1 Sep 2020 14:44:45 +0200 Subject: [PATCH] 4.0 | .gitignore: ignore the PHPUnit cache file As PHPCS 4.x now supports PHPUnit 8 and 9, which automatically enables caching of the test results, a `.phpunit.result.cache` file will be created. This file should not be committed, so adding it to the `.gitignore` file. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 9cc808cd28..e622a5f217 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ /CodeSniffer.conf /phpcs.xml /phpunit.xml +/.phpunit.result.cache .idea/* /vendor/ composer.lock