Your IP : 127.0.0.1
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Component;
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);
}