From fc1f0abf9c90ee01eb0647330e3f46149603262f Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Sat, 26 Sep 2020 04:45:42 +0700 Subject: [PATCH] sort exclude path in rector config --- rector.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rector.php b/rector.php index a52108f960f1..a0531b4d70cc 100644 --- a/rector.php +++ b/rector.php @@ -13,9 +13,9 @@ // is there a file you need to skip? $parameters->set(Option::EXCLUDE_PATHS, [ __DIR__ . '/app/Views', - __DIR__ . '/system/ThirdParty', __DIR__ . '/system/Autoloader/Autoloader.php', __DIR__ . '/system/Debug/Toolbar/Views/toolbar.tpl.php', + __DIR__ . '/system/ThirdParty', ]); // Rector relies on autoload setup of your project; Composer autoload is included by default; to add more: