Nondoc.php 467 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Dhl\Model\Source\Method;
  7. /**
  8. * Source model for DHL shipping methods for documentation
  9. */
  10. class Nondoc extends \Magento\Dhl\Model\Source\Method\AbstractMethod
  11. {
  12. /**
  13. * Carrier Product Type Indicator
  14. *
  15. * @var string $_contentType
  16. */
  17. protected $_contentType = \Magento\Dhl\Model\Carrier::DHL_CONTENT_TYPE_NON_DOC;
  18. }