From b64acbf7675bbf865703ab30d982d857d22694ae Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 21 Sep 2023 01:34:22 +0000 Subject: [PATCH] fix paths --- Config/rector.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Config/rector.php b/Config/rector.php index b0d6896..e36f214 100644 --- a/Config/rector.php +++ b/Config/rector.php @@ -23,9 +23,9 @@ return static function (RectorConfig $rectorConfig): void { ]); } elseif (\is_dir(__DIR__ . '/../../phpOMS')) { $rectorConfig->paths([ - __DIR__ . '/Model', - __DIR__ . '/Modules', - __DIR__ . '/phpOMS', + __DIR__ . '/../../Model', + __DIR__ . '/../../Modules', + __DIR__ . '/../../phpOMS', ]); } elseif (\is_dir(__DIR__ . '/../../tests')) { $rectorConfig->paths([__DIR__ . '/../..']);