12345678910111213141516171819202122 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Ups\Model\Config\Source;
- /**
- * Class Freemethod
- */
- class Freemethod extends \Magento\Ups\Model\Config\Source\Method
- {
- /**
- * {@inheritdoc}
- */
- public function toOptionArray()
- {
- $arr = parent::toOptionArray();
- array_unshift($arr, ['value' => '', 'label' => __('None')]);
- return $arr;
- }
- }
|