Select Git revision
Stub_Plugin1.php
-
Grzegorz Rola authoredGrzegorz Rola authored
AlphabeticalComparator.php 239 B
<?php declare(strict_types=1);
namespace WPDesk\Migrations\Version;
class AlphabeticalComparator implements Comparator {
public function compare(Version $a, Version $b): int {
return strcmp((string) $a, (string) $b);
}
}