WysiwygDefaultConfig.php 433 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. declare(strict_types=1);
  7. namespace Magento\Cms\Model;
  8. class WysiwygDefaultConfig implements \Magento\Framework\Data\Wysiwyg\ConfigProviderInterface
  9. {
  10. /**
  11. * {@inheritdoc}
  12. */
  13. public function getConfig(\Magento\Framework\DataObject $config) : \Magento\Framework\DataObject
  14. {
  15. return $config;
  16. }
  17. }