Skip to content
Snippets Groups Projects
Select Git revision
  • 17a110022ab1049bbaab365c0dc99aa152ba5c62
  • master default protected
  • fix/woo-stubs-dir
  • default-packages
  • use-internal-packages
  • update-setup
  • feature/wpdesk-cs
  • 2.5.3
  • 2.5.2
  • 2.5.1
  • 2.5.0
  • 2.4.2
  • 2.4.1
  • 2.4.0
  • 2.3
  • 2.2.1
  • 2.2
  • 2.1
  • 2.0
  • 1.10.15
  • 1.10.12
  • 1.10.8
  • 1.10.7
  • 1.10.6
  • 1.10.5
  • 1.10.3
  • 1.10.2
27 results

composer.lock

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