Your IP : 216.73.216.220


Current Path : /var/www/magento.test.indacotrentino.com/www/vendor/magento/module-dhl/Model/Source/
Upload File :
Current File : /var/www/magento.test.indacotrentino.com/www/vendor/magento/module-dhl/Model/Source/Contenttype.php

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

/**
 * Source model for DHL Content Type
 */
class Contenttype implements \Magento\Framework\Option\ArrayInterface
{
    /**
     * {@inheritdoc}
     */
    public function toOptionArray()
    {
        return [
            ['label' => __('Documents'), 'value' => \Magento\Dhl\Model\Carrier::DHL_CONTENT_TYPE_DOC],
            ['label' => __('Non documents'), 'value' => \Magento\Dhl\Model\Carrier::DHL_CONTENT_TYPE_NON_DOC]
        ];
    }
}