DefaultPathInterface.php 377 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Abstract application router
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\Framework\App;
  9. /**
  10. * Interface \Magento\Framework\App\DefaultPathInterface
  11. *
  12. */
  13. interface DefaultPathInterface
  14. {
  15. /**
  16. * @param string $code
  17. * @return string
  18. */
  19. public function getPart($code);
  20. }