vendor/contao-community-alliance/dependency-container/src/CcaDependencyInjectionBundle.php line 30

Open in your IDE?
  1. <?php
  2. /**
  3.  * This file is part of contao-community-alliance/dependency-container.
  4.  *
  5.  * (c) 2013-2020 Contao Community Alliance <https://c-c-a.org>
  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    contao-community-alliance/dependency-container
  13.  * @author     Christian Schiffler <c.schiffler@cyberspectrum.de>
  14.  * @author     Sven Baumann <baumann.sv@gmail.com>
  15.  * @author     Richard Henkenjohann <richardhenkenjohann@googlemail.com>
  16.  * @copyright  2013-2020 Contao Community Alliance <https://c-c-a.org>
  17.  * @license    https://github.com/contao-community-alliance/dependency-container/blob/master/LICENSE LGPL-3.0
  18.  * @link       https://github.com/contao-community-alliance/dependency-container
  19.  * @filesource
  20.  */
  21. namespace DependencyInjection\Container;
  22. use Symfony\Component\HttpKernel\Bundle\Bundle;
  23. /**
  24.  * This is the bundle for the legacy dependency injection container.
  25.  */
  26. class CcaDependencyInjectionBundle extends Bundle
  27. {
  28. }