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

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is a part of the CKFinder bundle for Symfony.
  4.  *
  5.  * Copyright (C) 2016, CKSource - Frederico Knabben. 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\HttpKernel\Bundle\Bundle;
  14. /**
  15.  * Class CKSourceCKFinderBundle
  16.  */
  17. class CKSourceCKFinderBundle extends Bundle
  18. {
  19.     /**
  20.      * {@inheritdoc}
  21.      */
  22.     public function getContainerExtension()
  23.     {
  24.         return new CKSourceCKFinderExtension();
  25.     }
  26. }