for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Madkom\RegistryApplication\Domain\CarManagement\Insurances;
class InsuranceDateChecker
{
public function checkDates(\DateTime $dateFrom, \DateTime $dateTo)
return ($dateFrom >= $dateTo) ?: false;
}