BatchRepositoryInterface.php 629 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
  4. */
  5. namespace Temando\Shipping\Model\ResourceModel\Repository;
  6. /**
  7. * Temando Batch Repository Interface.
  8. *
  9. * Access batch.
  10. *
  11. * @package Temando\Shipping\Model
  12. * @author Rhodri Davies <rhodri.davies@temando.com>
  13. * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  14. * @link http://www.temando.com/
  15. */
  16. interface BatchRepositoryInterface
  17. {
  18. /**
  19. * @param string $batchId
  20. * @return \Temando\Shipping\Model\BatchInterface
  21. */
  22. public function getById($batchId);
  23. }