Freemethod.php 461 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Ups\Model\Config\Source;
  7. /**
  8. * Class Freemethod
  9. */
  10. class Freemethod extends \Magento\Ups\Model\Config\Source\Method
  11. {
  12. /**
  13. * {@inheritdoc}
  14. */
  15. public function toOptionArray()
  16. {
  17. $arr = parent::toOptionArray();
  18. array_unshift($arr, ['value' => '', 'label' => __('None')]);
  19. return $arr;
  20. }
  21. }