vendor/contao-community-alliance/contao-clipboard-bundle/src/ClipboardBundle.php line 27

Open in your IDE?
  1. <?php
  2. /**
  3.  * This file is part of contao-community-alliance/contao-clipboard-bundle.
  4.  *
  5.  * (c) 2013 MEN AT WORK.
  6.  * (c) 2021 The CCA team.
  7.  *
  8.  * For the full copyright and license information, please view the LICENSE
  9.  * file that was distributed with this source code.
  10.  *
  11.  * This project is provided in good faith and hope to be usable by anyone.
  12.  *
  13.  * @package    Clipboard
  14.  * @author     Ingolf Steinhardt <info@e-spin.de>
  15.  * @copyright  2013 MEN AT WORK.
  16.  * @copyright  2021 The CCA team.
  17.  * @license    https://spdx.org/licenses/LGPL-3.0-or-later.html LGPL-3.0-or-later
  18.  * @filesource
  19.  */
  20. namespace ContaoCommunityAlliance\ClipboardBundle;
  21. use ContaoCommunityAlliance\ClipboardBundle\DependencyInjection\ClipboardExtension;
  22. use Symfony\Component\HttpKernel\Bundle\Bundle;
  23. class ClipboardBundle extends Bundle
  24. {
  25.     /**
  26.      * {@inheritdoc}
  27.      */
  28.     public function getContainerExtension()
  29.     {
  30.         return new ClipboardExtension();
  31.     }
  32. }