CheckoutFieldContainerInterface.php 728 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\Model\Order;
  6. /**
  7. * Temando Order Checkout Field Container Interface
  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 CheckoutFieldContainerInterface
  15. {
  16. const FIELDS = 'fields';
  17. /**
  18. * Obtain checkout fields for further processing during order placement.
  19. *
  20. * @return \Temando\Shipping\Model\Checkout\Attribute\CheckoutFieldInterface[]
  21. */
  22. public function getFields();
  23. }