<?php
/**
* This file is part of contao-community-alliance/contao-clipboard-bundle.
*
* (c) 2013 MEN AT WORK.
* (c) 2021 The CCA team.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* This project is provided in good faith and hope to be usable by anyone.
*
* @package Clipboard
* @author Ingolf Steinhardt <info@e-spin.de>
* @copyright 2013 MEN AT WORK.
* @copyright 2021 The CCA team.
* @license https://spdx.org/licenses/LGPL-3.0-or-later.html LGPL-3.0-or-later
* @filesource
*/
namespace ContaoCommunityAlliance\ClipboardBundle;
use ContaoCommunityAlliance\ClipboardBundle\DependencyInjection\ClipboardExtension;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class ClipboardBundle extends Bundle
{
/**
* {@inheritdoc}
*/
public function getContainerExtension()
{
return new ClipboardExtension();
}
}