Skip to content

Commit cb251eb

Browse files
committed
Updated Rector to commit 6e9861e70f8689a6bab96b16de868045a757d1d3
rectorphp/rector-src@6e9861e Fix typo message warning on withTypeCoverageLevel() message (#6808)
1 parent a9bd680 commit cb251eb

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/Application/VersionResolver.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ final class VersionResolver
1919
* @api
2020
* @var string
2121
*/
22-
public const PACKAGE_VERSION = '099d0b5e577745fbf9824ae6c5a296f3b1e70011';
22+
public const PACKAGE_VERSION = '6e9861e70f8689a6bab96b16de868045a757d1d3';
2323
/**
2424
* @api
2525
* @var string
2626
*/
27-
public const RELEASE_DATE = '2025-03-25 12:47:28';
27+
public const RELEASE_DATE = '2025-03-26 04:28:33';
2828
/**
2929
* @var int
3030
*/

src/Configuration/RectorConfigBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ public function withTypeCoverageLevel(int $level) : self
653653
// too high
654654
$levelRulesCount = \count($levelRules);
655655
if ($levelRulesCount + self::MAX_LEVEL_GAP < $level) {
656-
$this->levelOverflows[] = new LevelOverflow('withTypeCoverageLevel', $level, $levelRulesCount, 'typeCoverage', 'TYPE_DECLARATION');
656+
$this->levelOverflows[] = new LevelOverflow('withTypeCoverageLevel', $level, $levelRulesCount, 'typeDeclarations', 'TYPE_DECLARATION');
657657
}
658658
$this->rules = \array_merge($this->rules, $levelRules);
659659
return $this;

0 commit comments

Comments
 (0)