for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author: Vova Lando <[email protected]>
* @package: LoanPaymentsCalculator
* @subpackage: DateProvider
* @created: 14/06/2017 15:35
*/
namespace cog\LoanPaymentsCalculator\DateProvider\HolidayProvider;
* Class WeekendsProvider - provides functionality to determine weekend based on php DateTime
class WeekendsProvider implements HolidayProvider
{
* @param \DateTime $date
*
* @return bool
public function isHoliday(\DateTime $date)
return $date->format('N') >= 5;
}