EntityInterface.php 307 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Sales\Model;
  7. /**
  8. * Interface EntityInterface
  9. * @api
  10. * @since 100.0.2
  11. */
  12. interface EntityInterface
  13. {
  14. /**
  15. * @return string
  16. */
  17. public function getIncrementId();
  18. }