| Total Complexity | 1 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class AzineContactSorter implements ContactSorter |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * In this default implementation, all the contacts are sorted in |
||
| 11 | * alphabetic order by their lastName. |
||
| 12 | * |
||
| 13 | * @param UserContact $a |
||
| 14 | * |
||
| 15 | 1 | * @return UserContact $b |
|
| 16 | 1 | */ |
|
| 17 | public function compare(UserContact $a, UserContact $b) |
||
| 22 |