1 | <?php |
||
22 | class ViewSorter |
||
23 | { |
||
24 | /** |
||
25 | * Collator |
||
26 | * |
||
27 | * @var \Collator|null |
||
28 | */ |
||
29 | protected $collator = null; |
||
30 | |||
31 | /** |
||
32 | * Construct |
||
33 | * |
||
34 | * @param string $locale |
||
35 | */ |
||
36 | public function __construct($locale) |
||
42 | |||
43 | /** |
||
44 | * Sort choice |
||
45 | * |
||
46 | * @param \Symfony\Component\Form\FormView $choice |
||
47 | */ |
||
48 | public function choice(FormView $choice) |
||
61 | |||
62 | /** |
||
63 | * @param string $a |
||
64 | * @param string $b |
||
65 | * |
||
66 | * @return integer |
||
67 | */ |
||
68 | public function compare($a, $b) |
||
76 | } |
||
77 |