in src/AppSearch/Schema/CrawlSchedule.php [31:38]
public function __construct(int $frequency, string $unit)
{
$this->frequency = $frequency;
if (!in_array($unit, ['hour','day','week','month'])) {
throw new InvalidArgumentException('The $unit parameter must be one of these values: hour,day,week,month');
}
$this->unit = $unit;
}