Skip to content

Commit 836a884

Browse files
committed
Pass correct parameters for VersionInfo::getNextVersion()
1 parent 82054d0 commit 836a884

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

get_next_version_number.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,11 @@
4444
$path = rtrim($path, '/') . '/version.php';
4545

4646
$currentVersion = VersionInfo::fromVersionFile($path);
47-
$nextVersion = $currentVersion->getNextVersion($branch, $type, $rc, $date, $isdevbranch);
47+
$nextVersion = $currentVersion->getNextVersion(
48+
branch: $branch,
49+
type: $type,
50+
rc: $rc,
51+
isdevbranch: $isdevbranch,
52+
date: $date,
53+
);
4854
echo $nextVersion->release;

0 commit comments

Comments
 (0)