Skip to content

Commit 1edf7f0

Browse files
committed
- chore: removed dangling comma
1 parent 20806cc commit 1edf7f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

semver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function get_complete_version(array $version): array
6666
defined('VERSION') && is_array(VERSION) => get_version_array(join('-', array_filter(VERSION))),
6767
is_file($version = __DIR__ . '/../../../VERSION'), // project dir relative to /vendor
6868
is_file($version = getcwd() . '/VERSION') => get_version_array(@file_get_contents($version)),
69-
default => INVALID_VERSION_ARRAY,
69+
default => INVALID_VERSION_ARRAY
7070
};
7171
}
7272
assert(3 === count($version), 'version array should have exactly 3 parts');

0 commit comments

Comments
 (0)