Machinable.php 307 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Usps\Model\Source;
  7. /**
  8. * Machinable source
  9. */
  10. class Machinable extends Generic
  11. {
  12. /**
  13. * Carrier code
  14. *
  15. * @var string
  16. */
  17. protected $code = 'machinable';
  18. }