Update composer dev dependencies

This commit is contained in:
Dylan K. Taylor
2025-09-15 22:41:02 +01:00
parent b237cacfc9
commit a056af1617
9 changed files with 70 additions and 34 deletions

View File

@@ -354,6 +354,9 @@ function processStateGroup(string $oldName, array $upgradeTable, BlockStateUpgra
* @param string[] $strings
*/
function findCommonPrefix(array $strings) : string{
if(count($strings) === 0){
return "";
}
sort($strings, SORT_STRING);
$first = $strings[array_key_first($strings)];