From 38b4fc4969234212a584cb8711b9ae384980b88e Mon Sep 17 00:00:00 2001 From: Tomas Votruba Date: Tue, 7 Nov 2023 12:47:57 +0000 Subject: [PATCH] Updated Rector to commit 0a2594d5569028d436e08738fe10d4edb16d61a7 https://github.com/rectorphp/rector-src/commit/0a2594d5569028d436e08738fe10d4edb16d61a7 Remove `ArraySpreadInsteadOfArrayMergeRector` from `LevelSetList::UP_TO_PHP_74` (#5228) --- config/set/php74.php | 2 +- src/Application/VersionResolver.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/set/php74.php b/config/set/php74.php index 598628a6a05..eb2214c209a 100644 --- a/config/set/php74.php +++ b/config/set/php74.php @@ -28,5 +28,5 @@ return static function (RectorConfig $rectorConfig) : void { # https://wiki.php.net/rfc/deprecations_php_7_4 'apache_request_headers' => 'getallheaders', ]); - $rectorConfig->rules([ArrayKeyExistsOnPropertyRector::class, FilterVarToAddSlashesRector::class, ExportToReflectionFunctionRector::class, MbStrrposEncodingArgumentPositionRector::class, RealToFloatTypeCastRector::class, NullCoalescingOperatorRector::class, ClosureToArrowFunctionRector::class, ArraySpreadInsteadOfArrayMergeRector::class, AddLiteralSeparatorToNumberRector::class, RestoreDefaultNullToNullableTypePropertyRector::class, CurlyToSquareBracketArrayStringRector::class, MoneyFormatToNumberFormatRector::class, ParenthesizeNestedTernaryRector::class, TypedPropertyFromAssignsRector::class]); + $rectorConfig->rules([ArrayKeyExistsOnPropertyRector::class, FilterVarToAddSlashesRector::class, ExportToReflectionFunctionRector::class, MbStrrposEncodingArgumentPositionRector::class, RealToFloatTypeCastRector::class, NullCoalescingOperatorRector::class, ClosureToArrowFunctionRector::class, AddLiteralSeparatorToNumberRector::class, RestoreDefaultNullToNullableTypePropertyRector::class, CurlyToSquareBracketArrayStringRector::class, MoneyFormatToNumberFormatRector::class, ParenthesizeNestedTernaryRector::class, TypedPropertyFromAssignsRector::class]); }; diff --git a/src/Application/VersionResolver.php b/src/Application/VersionResolver.php index e86ce2a56ff..436004fdcf5 100644 --- a/src/Application/VersionResolver.php +++ b/src/Application/VersionResolver.php @@ -19,12 +19,12 @@ final class VersionResolver * @api * @var string */ - public const PACKAGE_VERSION = 'ce62c634015fefa1f91429ecda659fe71371b85a'; + public const PACKAGE_VERSION = '0a2594d5569028d436e08738fe10d4edb16d61a7'; /** * @api * @var string */ - public const RELEASE_DATE = '2023-11-07 12:58:20'; + public const RELEASE_DATE = '2023-11-07 13:44:33'; /** * @var int */