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

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\HttpKernel\Bundle\Bundle;
  25. /**
  26.  * Class MultiColumnWizardBundle
  27.  *
  28.  * @package MenAtWork\MultiColumnWizardBundle
  29.  */
  30. class MultiColumnWizardBundle extends Bundle
  31. {
  32.     public const SCOPE_BACKEND  'backend';
  33.     public const SCOPE_FRONTEND 'frontend';
  34.     /**
  35.      * {@inheritdoc}
  36.      */
  37.     public function getContainerExtension()
  38.     {
  39.         return new MultiColumnWizardExtension();
  40.     }
  41.     /**
  42.      * {@inheritdoc}
  43.      */
  44.     public function registerCommands(Application $application)
  45.     {
  46.         // disable automatic command registration
  47.     }
  48. }