- <?php
- /**
-  * This file is part of menatwork/contao-multicolumnwizard-bundle.
-  *
-  * (c) 2012-2019 MEN AT WORK.
-  *
-  * 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    menatwork/contao-multicolumnwizard-bundle
-  * @author     Christian Schiffler <c.schiffler@cyberspectrum.de>
-  * @author     Stefan Heimes <stefan_heimes@hotmail.com>
-  * @copyright  2011 Andreas Schempp
-  * @copyright  2011 certo web & design GmbH
-  * @copyright  2013-2019 MEN AT WORK
-  * @license    https://github.com/menatwork/contao-multicolumnwizard-bundle/blob/master/LICENSE LGPL-3.0-or-later
-  * @filesource
-  */
- namespace MenAtWork\MultiColumnWizardBundle;
- use MenAtWork\MultiColumnWizardBundle\DependencyInjection\MultiColumnWizardExtension;
- use Symfony\Component\Console\Application;
- use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
- use Symfony\Component\HttpKernel\Bundle\Bundle;
- /**
-  * Class MultiColumnWizardBundle
-  *
-  * @package MenAtWork\MultiColumnWizardBundle
-  */
- class MultiColumnWizardBundle extends Bundle
- {
-     /**
-      * {@inheritdoc}
-      */
-     public function getContainerExtension(): ?ExtensionInterface
-     {
-         return new MultiColumnWizardExtension();
-     }
- }
-