From 263b09c2f79dc2d4e2b325d4c3c0fbfcbbbabe67 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Mon, 9 Sep 2024 11:03:23 +0200 Subject: [PATCH] chore(rector): Upgrade config file Signed-off-by: Christoph Wurst --- rector.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/rector.php b/rector.php index 56363b480c..b49e5dad97 100644 --- a/rector.php +++ b/rector.php @@ -1,18 +1,19 @@ paths([ +return RectorConfig::configure() + ->withPaths([ __DIR__ . '/lib', __DIR__ . '/tests', + ]) + ->withSkip([ + __DIR__ . '/lib/Vendor' ]); - $rectorConfig->skip([ - __DIR__ . '/lib/Vendor', - ]); -};