ContainerInterface.php 315 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\View\Element\UiComponent;
  7. use Magento\Framework\View\Element\BlockInterface;
  8. /**
  9. * Interface ContainerInterface
  10. */
  11. interface ContainerInterface extends BlockInterface
  12. {
  13. //
  14. }