<?php
/**
 * Copyright ©  All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Leadlion\AutogedalWarehouses\Model\Config\Source;

class Timer implements \Magento\Framework\Option\ArrayInterface
{
    public function toOptionArray() {
        $options[] = ['label' => '', 'value' => ''];
        for($i = 0; $i < 24; $i++) {
            $t = date("H.i A", strtotime($i.":00:00"));
            $options[] = ['value' => $i, 'label' => $t];
        }
        return $options;
    }
}