Skip to content

Commit

Permalink
Updated Rector to commit c0079e3824d81ca2bd1a4b430c06acec4a5ef731
Browse files Browse the repository at this point in the history
rectorphp/rector-src@c0079e3 Rollback RectorConfig::configure()->withRules() on privatization config set to old style config (#5560)
  • Loading branch information
TomasVotruba committed Feb 5, 2024
1 parent 7810dc2 commit 8be4b97
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion config/set/privatization.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@
use Rector\Privatization\Rector\ClassMethod\PrivatizeFinalClassMethodRector;
use Rector\Privatization\Rector\MethodCall\PrivatizeLocalGetterToPropertyRector;
use Rector\Privatization\Rector\Property\PrivatizeFinalClassPropertyRector;
return RectorConfig::configure()->withRules([PrivatizeLocalGetterToPropertyRector::class, PrivatizeFinalClassPropertyRector::class, PrivatizeFinalClassMethodRector::class]);
return static function (RectorConfig $rectorConfig) : void {
$rectorConfig->rules([PrivatizeLocalGetterToPropertyRector::class, PrivatizeFinalClassPropertyRector::class, PrivatizeFinalClassMethodRector::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 = '487f162d53fe42f6d76557ca6cd49d93ceb911e8';
public const PACKAGE_VERSION = 'c0079e3824d81ca2bd1a4b430c06acec4a5ef731';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-02-05 08:59:23';
public const RELEASE_DATE = '2024-02-05 09:57:31';
/**
* @var int
*/
Expand Down

0 comments on commit 8be4b97

Please sign in to comment.