TestDataInterface.php 623 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Reflection\Test\Unit;
  7. interface TestDataInterface
  8. {
  9. /**
  10. * @return string
  11. */
  12. public function getId();
  13. /**
  14. * @return string
  15. */
  16. public function getAddress();
  17. /**
  18. * @return string
  19. */
  20. public function isDefaultShipping();
  21. /**
  22. * @return string
  23. */
  24. public function isRequiredBilling();
  25. /**
  26. * @return \Magento\Framework\Api\ExtensionAttributesInterface|null
  27. */
  28. public function getExtensionAttributes();
  29. }