From cd9fe13a89b4e002484519eabdf46c0cca871315 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Tue, 1 Sep 2020 14:44:45 +0200 Subject: [PATCH] PHPCS 4.x: .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 99658952b8..778b6b7a12 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ .idea/* /vendor/ composer.lock +/.phpunit.result.cache