Skip to content

Commit

Permalink
Updated Rector to commit cdeea08b786337dc6f537c9cac0ac9dc80a2da8d
Browse files Browse the repository at this point in the history
rectorphp/rector-src@cdeea08 Fix duplicated register ContinueToBreakInSwitchRector in php52.php and php73.php (#6385)
  • Loading branch information
TomasVotruba committed Oct 16, 2024
1 parent 82270e5 commit 5864fb0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions config/set/php73.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
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;
Expand Down Expand Up @@ -32,5 +31,5 @@
'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]);
};
4 changes: 2 additions & 2 deletions src/Application/VersionResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down

0 comments on commit 5864fb0

Please sign in to comment.