for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* AnimeDb package.
*
* @author Peter Gribanov <[email protected]>
* @copyright Copyright (c) 2011, Peter Gribanov
*/
namespace AnimeDb\SmartSleep\Rule;
class WeekdayRule extends RandMaxSecondsRuleBase
{
* @param \DateTime $time
* @return bool
public function isMatched(\DateTime $time)
return $time->format('N') <= 5 &&
$this->getStart() <= $time->format('G') &&
$this->getEnd() > $time->format('G');
}