Freedoc.php 583 B

1234567891011121314151617181920212223242526
  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 Freedoc 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_DOC;
  18. /**
  19. * Show 'none' in methods list or not;
  20. *
  21. * @var bool
  22. */
  23. protected $_noneMethod = true;
  24. }