Merge pull request #230 from diogocavilha/master

Update DateComparator.php
This commit is contained in:
Dominik Liebler
2016-09-10 18:37:23 +02:00
committed by GitHub

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;
}
}