in app/classes/ReleaseInsights/Duration.php [75:90]
public function workDays(): int
{
$count = 0;
// P1D is short for 'Period: 1 Day'
$range = new DatePeriod(start: $this->start, end: $this->end, interval: new DateInterval('P1D'));
foreach($range as $date){
if ($this->isWorkDay($date)) {
$count++;
}
}
return $count;
}