From 261eca88d234292ae85011ed07b63443903e48a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juli=C3=A1n=20Guti=C3=A9rrez?= Date: Tue, 5 Mar 2024 22:54:31 +0100 Subject: [PATCH] remove cache --- ecs.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/ecs.php b/ecs.php index cb0e8b2..f36184f 100644 --- a/ecs.php +++ b/ecs.php @@ -35,7 +35,6 @@ if (!method_exists(ECSConfig::class, 'configure')) { return static function (ECSConfig $ecsConfig) use ($configSet, $paths): void { $ecsConfig->paths($paths); - $ecsConfig->cacheDirectory('.ecs.cache'); $configSet->configure($ecsConfig); }; @@ -43,5 +42,4 @@ return $configSet ->configureBuilder() - ->withCache('.ecs.cache') ->withPaths($paths);