GenericInterface.php 305 B

123456789101112131415
  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. use Magento\Framework\Data\OptionSourceInterface;
  8. /**
  9. * Interface GenericInterface
  10. */
  11. interface GenericInterface extends OptionSourceInterface
  12. {
  13. }