DynamicRows.php 420 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Ui\Component;
  7. /**
  8. * Ui component DynamicRows
  9. * @api
  10. * @since 100.1.0
  11. */
  12. class DynamicRows extends AbstractComponent
  13. {
  14. const NAME = 'dynamicRows';
  15. /**
  16. * {@inheritdoc}
  17. * @since 100.1.0
  18. */
  19. public function getComponentName()
  20. {
  21. return static::NAME;
  22. }
  23. }