Updated Rector to commit cdeea08b786337dc6f537c9cac0ac9dc80a2da8d

cdeea08b78 Fix duplicated register ContinueToBreakInSwitchRector in php52.php and php73.php (#6385)
This commit is contained in:
Tomas Votruba 2024-10-16 04:55:01 +00:00
parent 82270e53ff
commit 5864fb0506
2 changed files with 3 additions and 4 deletions

View File

@ -4,7 +4,6 @@ declare (strict_types=1);
namespace RectorPrefix202410;
use Rector\Config\RectorConfig;
use Rector\Php52\Rector\Switch_\ContinueToBreakInSwitchRector;
use Rector\Php73\Rector\BooleanOr\IsCountableRector;
use Rector\Php73\Rector\ConstFetch\SensitiveConstantNameRector;
use Rector\Php73\Rector\FuncCall\ArrayKeyFirstLastRector;
@ -32,5 +31,5 @@ return static function (RectorConfig $rectorConfig) : void {
'mbereg_search_getregs' => 'mb_ereg_search_getregs',
'mbereg_search_getpos' => 'mb_ereg_search_getpos',
]);
$rectorConfig->rules([StringifyStrNeedlesRector::class, RegexDashEscapeRector::class, ContinueToBreakInSwitchRector::class, SetCookieRector::class, IsCountableRector::class, ArrayKeyFirstLastRector::class, SensitiveDefineRector::class, SensitiveConstantNameRector::class, SensitiveHereNowDocRector::class]);
$rectorConfig->rules([StringifyStrNeedlesRector::class, RegexDashEscapeRector::class, SetCookieRector::class, IsCountableRector::class, ArrayKeyFirstLastRector::class, SensitiveDefineRector::class, SensitiveConstantNameRector::class, SensitiveHereNowDocRector::class]);
};

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '7be438b5fc0f91a9dc9b70a0b6a38a6bf1e906b2';
public const PACKAGE_VERSION = 'cdeea08b786337dc6f537c9cac0ac9dc80a2da8d';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-10-15 23:24:55';
public const RELEASE_DATE = '2024-10-16 11:52:45';
/**
* @var int
*/