Config.php 381 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Ui\Component\Wysiwyg;
  7. /**
  8. * Class Config
  9. */
  10. class Config implements ConfigInterface
  11. {
  12. /**
  13. * Return WYSIWYG configuration
  14. *
  15. * @return \Magento\Framework\DataObject
  16. */
  17. public function getConfig()
  18. {
  19. return [];
  20. }
  21. }