From b26a818b5c9761fdd53125a38bb86f61f716e3fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 15 Jan 2024 10:40:39 +0100 Subject: [PATCH] Fix: Namespace --- rector.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rector.php b/rector.php index df8d1387..dbd6ba96 100644 --- a/rector.php +++ b/rector.php @@ -12,8 +12,8 @@ */ use Rector\Config; -use Rector\Core; use Rector\PHPUnit; +use Rector\ValueObject; return static function (Config\RectorConfig $rectorConfig): void { $rectorConfig->cacheDirectory(__DIR__ . '/.build/rector/'); @@ -25,7 +25,7 @@ __DIR__ . '/test/', ]); - $rectorConfig->phpVersion(Core\ValueObject\PhpVersion::PHP_83); + $rectorConfig->phpVersion(ValueObject\PhpVersion::PHP_83); $rectorConfig->sets([ PHPUnit\Set\PHPUnitSetList::PHPUNIT_100,