ConfigInterface.php 350 B

12345678910111213141516171819
  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. * Interface ConfigInterface
  9. */
  10. interface ConfigInterface
  11. {
  12. /**
  13. * Return WYSIWYG configuration
  14. *
  15. * @return \Magento\Framework\DataObject
  16. */
  17. public function getConfig();
  18. }