Merge remote-tracking branch 'origin/master' into iterator-bug

This commit is contained in:
Dominik Liebler
2016-09-21 14:38:53 +02:00
99 changed files with 3027 additions and 892 deletions

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

View File

@@ -2,9 +2,6 @@
namespace DesignPatterns\Behavioral\TemplateMethod;
/**
*
*/
abstract class Journey
{
/**