diff --git a/get_next_version_number.php b/get_next_version_number.php index 0f9abd0..6a2d651 100644 --- a/get_next_version_number.php +++ b/get_next_version_number.php @@ -44,5 +44,11 @@ $path = rtrim($path, '/') . '/version.php'; $currentVersion = VersionInfo::fromVersionFile($path); -$nextVersion = $currentVersion->getNextVersion($branch, $type, $rc, $date, $isdevbranch); +$nextVersion = $currentVersion->getNextVersion( + branch: $branch, + type: $type, + rc: $rc, + isdevbranch: $isdevbranch, + date: $date, +); echo $nextVersion->release;