Skip to content

Commit

Permalink
Updated Rector to commit 4f301f2335b0fef2934ddaf53471ebd961de1f71
Browse files Browse the repository at this point in the history
rectorphp/rector-src@4f301f2 [Configuration] Add missing LevelSetList::UP_TO_PHP_84 on PhpLevelSetResolver::resolveFromPhpVersion() (#5890)
  • Loading branch information
TomasVotruba committed May 18, 2024
1 parent c6998bf commit dd1dd51
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 = '19863767c63503e19aed359d849fa55bbf3a1df9';
public const PACKAGE_VERSION = '4f301f2335b0fef2934ddaf53471ebd961de1f71';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-05-17 09:53:42';
public const RELEASE_DATE = '2024-05-18 14:35:49';
/**
* @var int
*/
Expand Down
2 changes: 2 additions & 0 deletions src/Configuration/PhpLevelSetResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ public static function resolveFromPhpVersion(int $phpVersion) : string
return LevelSetList::UP_TO_PHP_82;
case PhpVersion::PHP_83:
return LevelSetList::UP_TO_PHP_83;
case PhpVersion::PHP_84:
return LevelSetList::UP_TO_PHP_84;
default:
throw new InvalidConfigurationException(\sprintf('Could not resolve PHP level set list for "%s"', $phpVersion));
}
Expand Down

0 comments on commit dd1dd51

Please sign in to comment.