vendor/ckfinder/ckfinder-symfony-bundle/CKSourceCKFinderBundle.php line 21

  1. <?php
  2. /*
  3.  * This file is a part of the CKFinder bundle for Symfony.
  4.  *
  5.  * Copyright (c) 2022, CKSource Holding sp. z o.o. All rights reserved.
  6.  *
  7.  * Licensed under the terms of the MIT license.
  8.  * For the full copyright and license information, please view the LICENSE.txt
  9.  * file that was distributed with this source code.
  10.  */
  11. namespace CKSource\Bundle\CKFinderBundle;
  12. use CKSource\Bundle\CKFinderBundle\DependencyInjection\CKSourceCKFinderExtension;
  13. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  14. use Symfony\Component\HttpKernel\Bundle\Bundle;
  15. /**
  16.  * Class CKSourceCKFinderBundle
  17.  */
  18. class CKSourceCKFinderBundle extends Bundle
  19. {
  20.     /**
  21.      * {@inheritdoc}
  22.      */
  23.     public function getContainerExtension(): ?ExtensionInterface
  24.     {
  25.         return new CKSourceCKFinderExtension();
  26.     }
  27. }