Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-catalog/Model/Config/Source/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-catalog/Model/Config/Source/TimeFormat.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Catalog\Model\Config\Source;

class TimeFormat implements \Magento\Framework\Option\ArrayInterface
{
    /**
     * {@inheritdoc}
     *
     * @codeCoverageIgnore
     */
    public function toOptionArray()
    {
        return [
            ['value' => '12h', 'label' => __('12h AM/PM')],
            ['value' => '24h', 'label' => __('24h')]
        ];
    }
}