Update DateComparator.php

This commit is contained in:
Diogo Alexsander Cavilha
2016-09-09 10:17:41 -03:00
committed by GitHub
parent 8eed6f9c21
commit f281f412c4

View File

@@ -17,8 +17,8 @@ class DateComparator implements ComparatorInterface
if ($aDate == $bDate) {
return 0;
} else {
return $aDate < $bDate ? -1 : 1;
}
return $aDate < $bDate ? -1 : 1;
}
}