DispatchProviderInterface.php 672 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
  4. */
  5. namespace Temando\Shipping\Model;
  6. /**
  7. * Temando Dispatch Provider
  8. *
  9. * @package Temando\Shipping\Model
  10. * @author Christoph Aßmann <christoph.assmann@netresearch.de>
  11. * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  12. * @link http://www.temando.com/
  13. */
  14. interface DispatchProviderInterface
  15. {
  16. /**
  17. * @return DispatchInterface
  18. */
  19. public function getDispatch();
  20. /**
  21. * @param DispatchInterface $dispatch
  22. * @return void
  23. */
  24. public function setDispatch(DispatchInterface $dispatch);
  25. }