GenericDefault.php 399 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Shipping\Model\Carrier\Source;
  7. /**
  8. * Class GenericDefault
  9. * Default implementation of generic carrier source
  10. *
  11. */
  12. class GenericDefault implements GenericInterface
  13. {
  14. /**
  15. * {@inheritdoc}
  16. */
  17. public function toOptionArray()
  18. {
  19. return [];
  20. }
  21. }