vendor/friendsofsymfony/ckeditor-bundle/src/FOSCKEditorBundle.php line 21

Open in your IDE?
  1. <?php
  2. /*
  3. * This file is part of the FOSCKEditor Bundle.
  4. *
  5. * (c) 2018 - present Friends of Symfony
  6. * (c) 2009 - 2017 Eric GELOEN <geloen.eric@gmail.com>
  7. *
  8. * For the full copyright and license information, please read the LICENSE
  9. * file that was distributed with this source code.
  10. */
  11. namespace FOS\CKEditorBundle;
  12. use FOS\CKEditorBundle\DependencyInjection\FOSCKEditorExtension;
  13. use Symfony\Component\HttpKernel\Bundle\Bundle;
  14. /**
  15. * @author GeLo <geloen.eric@gmail.com>
  16. */
  17. final class FOSCKEditorBundle extends Bundle
  18. {
  19. public function getContainerExtension(): FOSCKEditorExtension
  20. {
  21. return new FOSCKEditorExtension();
  22. }
  23. }