From 495039cd94499a38f5c2ab1588f69d64c0295eca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sun, 14 Jan 2024 21:44:19 +0100 Subject: [PATCH] Fix: Namespace --- rector.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rector.php b/rector.php index 3ff07b7f..55be202e 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,5 +25,5 @@ __DIR__ . '/test/', ]); - $rectorConfig->phpVersion(Core\ValueObject\PhpVersion::PHP_74); + $rectorConfig->phpVersion(ValueObject\PhpVersion::PHP_74); };