Collection.php 541 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Ui\Component\Form;
  7. use Magento\Ui\Component\AbstractComponent;
  8. use Magento\Framework\View\Element\UiComponentInterface;
  9. /**
  10. * @api
  11. * @since 100.0.2
  12. */
  13. class Collection extends AbstractComponent implements UiComponentInterface
  14. {
  15. const NAME = 'collection';
  16. /**
  17. * Get component name
  18. *
  19. * @return string
  20. */
  21. public function getComponentName()
  22. {
  23. return static::NAME;
  24. }
  25. }