12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Component;
- /**
- * @author Josh Di Fabio <joshdifabio@gmail.com>
- */
- interface ComponentRegistrarInterface
- {
- /**
- * Get list of registered Magento components
- *
- * Returns an array where key is fully-qualified component name and value is absolute path to component
- *
- * @param string $type
- * @return array
- */
- public function getPaths($type);
- /**
- * Get path of a component if it is already registered
- *
- * @param string $type
- * @param string $componentName
- * @return null|string
- */
- public function getPath($type, $componentName);
- }
|