Skip to content
Snippets Groups Projects
Select Git revision
  • b27f59d09605d78eb017ed291d5f284472ac657a
  • master default protected
  • bugfix/wordpress-review
  • initialize-tracker
  • 1.3.0
  • 1.2.3
  • 1.2.2
  • 1.2.1
  • 1.2.0
  • 1.2.0-beta.1
  • 1.1.0
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
16 results

Stub_Plugin1.php

Blame
  • 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);
        }
    }