-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSorter.php
More file actions
56 lines (49 loc) · 884 Bytes
/
Sorter.php
File metadata and controls
56 lines (49 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
namespace Antikirra\ArraySort;
final class Sorter
{
private function __construct()
{
}
/**
* @return KeySorter
*/
public static function byKey()
{
return KeySorter::make();
}
/**
* @return ValueSorter
*/
public static function byValue()
{
return ValueSorter::make();
}
/**
* @return FunctionSorter
*/
public static function byFunction(callable $callback)
{
return FunctionSorter::make($callback);
}
/**
* @return int
*/
public static function asc($a, $b)
{
if ($a == $b) {
return 0;
} else if ($a < $b) {
return -1;
} else {
return 1;
}
}
/**
* @return int
*/
public static function desc($a, $b)
{
return -self::asc($a, $b);
}
}