Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 535 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 535 Bytes

Cubicl\Sorting Module

Implementation of a generic sorting system with an interface definition compatible to the Comparable RFC.

Usage

You have two possible options. Depending on your use case you can implement the Cubicl\Sorting\Comparable interface or use a comparator.

<?php

// with a comparable
$orderedList = $sortManager->sortComparable($unorderedListOfComparable);

// or with a comparator
$orderedList = $sortManager->sortWithComparator($comparator, $unorderedList);