openingHoursSpecification??null; } public function setOpeningHoursSpecification(OpeningHoursSpecification $openingHoursSpecification):void { $this->openingHoursSpecification = $openingHoursSpecification; } public function getOpeningHoursSpecificationFieldConfig():array { return [ 'type' => 'repeater', 'label' => 'Opening Hours', 'fields' => [ 'dayOfWeek' => [ 'type' => 'radio', 'label' => 'Day(s) of Week', 'options' => [ 'Mo' => 'Monday', 'Tu' => 'Tuesday', 'We' => 'Wednesday', 'Th' => 'Thursday', 'Fr' => 'Friday', 'Sa' => 'Saturday', 'Su' => 'Sunday' ] ], 'opens' => [ 'type' => 'time', 'label' => 'Opens At', ], 'closes' => [ 'type' => 'time', 'label' => 'Closes At', ] ] ]; } }