Update PhpVersion::getNewestSupported() to PHP 8.3

This commit is contained in:
Maarten Buis 2024-03-01 23:37:53 +01:00 committed by Nikita Popov
parent af14fdb282
commit ec02613432

View File

@ -43,7 +43,7 @@ class PhpVersion {
* if it is still under development.
*/
public static function getNewestSupported(): self {
return self::fromComponents(8, 2);
return self::fromComponents(8, 3);
}
/**