Skip to content

Commit

Permalink
Updated Rector to commit 1fcd876367b12e6857552c593799d7f0eb0a8145
Browse files Browse the repository at this point in the history
rectorphp/rector-src@1fcd876 register RemoveTypedPropertyNonMockDocblockRector rule in dead-code set
  • Loading branch information
TomasVotruba committed Oct 11, 2024
1 parent 7f51244 commit d633e95
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
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 = 'd8f31e7559c9e3e288f2f58228120c71986a80e9';
public const PACKAGE_VERSION = '1fcd876367b12e6857552c593799d7f0eb0a8145';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-10-11 13:20:28';
public const RELEASE_DATE = '2024-10-11 13:57:09';
/**
* @var int
*/
Expand Down
2 changes: 2 additions & 0 deletions src/Config/Level/DeadCodeLevel.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
use Rector\DeadCode\Rector\BooleanAnd\RemoveAndTrueRector;
use Rector\DeadCode\Rector\Cast\RecastingRemovalRector;
use Rector\DeadCode\Rector\ClassConst\RemoveUnusedPrivateClassConstantRector;
use Rector\DeadCode\Rector\ClassLike\RemoveTypedPropertyNonMockDocblockRector;
use Rector\DeadCode\Rector\ClassMethod\RemoveEmptyClassMethodRector;
use Rector\DeadCode\Rector\ClassMethod\RemoveNullTagValueNodeRector;
use Rector\DeadCode\Rector\ClassMethod\RemoveUnusedConstructorParamRector;
Expand Down Expand Up @@ -95,6 +96,7 @@ final class DeadCodeLevel
// prioritize safe belt on RemoveUseless*TagRector that registered previously first
RemoveNullTagValueNodeRector::class,
RemovePhpVersionIdCheckRector::class,
RemoveTypedPropertyNonMockDocblockRector::class,
RemoveAlwaysTrueIfConditionRector::class,
ReduceAlwaysFalseIfOrRector::class,
RemoveUnusedPrivateClassConstantRector::class,
Expand Down

0 comments on commit d633e95

Please sign in to comment.