Example #1
0
 /**
  * @return bool
  */
 public function areWorkedHoursWithoutLunchZero()
 {
     $workedHours = $this->workedHours->getWorkEnd()->subTime($this->workedHours->getWorkStart());
     return $workedHours->compare('00:00:00') === 0 ? true : false;
 }