ShippingApiInterface.php 755 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
  4. */
  5. namespace Temando\Shipping\ViewModel;
  6. use Temando\Shipping\ViewModel\DataProvider\ShippingApiAccessInterface;
  7. /**
  8. * Temando API Access Details Provider Interface
  9. *
  10. * All view models that provide access to the Temando API must implement this.
  11. *
  12. * @package Temando\Shipping\ViewModel
  13. * @author Christoph Aßmann <christoph.assmann@netresearch.de>
  14. * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  15. * @link http://www.temando.com/
  16. */
  17. interface ShippingApiInterface
  18. {
  19. /**
  20. * @return ShippingApiAccessInterface
  21. */
  22. public function getShippingApiAccess(): ShippingApiAccessInterface;
  23. }