1234567891011121314151617181920212223242526272829 |
- <?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
- */
- interface PoolInterface
- {
- /**
- * Register component at pool
- *
- * @param UiComponentInterface $component
- * @return void
- */
- public function register(UiComponentInterface $component);
- /**
- * Retrieve components pool
- *
- * @return UiComponentInterface[]
- */
- public function getComponents();
- }
|