123456789101112131415161718192021 |
- <?php
- /**
- * Abstract application router
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\App;
- /**
- * Interface \Magento\Framework\App\DefaultPathInterface
- *
- */
- interface DefaultPathInterface
- {
- /**
- * @param string $code
- * @return string
- */
- public function getPart($code);
- }
|