Dropoff.php 413 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Fedex dropoff source implementation
  8. *
  9. * @author Magento Core Team <core@magentocommerce.com>
  10. */
  11. namespace Magento\Fedex\Model\Source;
  12. class Dropoff extends \Magento\Fedex\Model\Source\Generic
  13. {
  14. /**
  15. * Carrier code
  16. *
  17. * @var string
  18. */
  19. protected $_code = 'dropoff';
  20. }