| Current Path : /home/rtorresani/www/vendor/magento/framework/View/Element/UiComponent/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/View/Element/UiComponent/PoolInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\View\Element\UiComponent;
use Magento\Framework\View\Element\UiComponentInterface;
/**
* Interface PoolInterface
*
* @api
*/
interface PoolInterface
{
/**
* Register component at pool
*
* @param UiComponentInterface $component
* @return void
*/
public function register(UiComponentInterface $component);
/**
* Retrieve components pool
*
* @return UiComponentInterface[]
*/
public function getComponents();
}