vendor/menatwork/contao-multicolumnwizard-bundle/src/MultiColumnWizardBundle.php line 35

Open in your IDE?
  1. <?php
  2. /**
  3.  * This file is part of menatwork/contao-multicolumnwizard-bundle.
  4.  *
  5.  * (c) 2012-2019 MEN AT WORK.
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  *
  10.  * This project is provided in good faith and hope to be usable by anyone.
  11.  *
  12.  * @package    menatwork/contao-multicolumnwizard-bundle
  13.  * @author     Christian Schiffler <c.schiffler@cyberspectrum.de>
  14.  * @author     Stefan Heimes <stefan_heimes@hotmail.com>
  15.  * @copyright  2011 Andreas Schempp
  16.  * @copyright  2011 certo web & design GmbH
  17.  * @copyright  2013-2019 MEN AT WORK
  18.  * @license    https://github.com/menatwork/contao-multicolumnwizard-bundle/blob/master/LICENSE LGPL-3.0-or-later
  19.  * @filesource
  20.  */
  21. namespace MenAtWork\MultiColumnWizardBundle;
  22. use MenAtWork\MultiColumnWizardBundle\DependencyInjection\MultiColumnWizardExtension;
  23. use Symfony\Component\Console\Application;
  24. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  25. use Symfony\Component\HttpKernel\Bundle\Bundle;
  26. /**
  27.  * Class MultiColumnWizardBundle
  28.  *
  29.  * @package MenAtWork\MultiColumnWizardBundle
  30.  */
  31. class MultiColumnWizardBundle extends Bundle
  32. {
  33.     /**
  34.      * {@inheritdoc}
  35.      */
  36.     public function getContainerExtension(): ?ExtensionInterface
  37.     {
  38.         return new MultiColumnWizardExtension();
  39.     }
  40. }