| Current Path : /home/rtorresani/www/vendor/magento/module-dhl/Model/Source/ |
| Current File : //home/rtorresani/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]
];
}
}