vendor/terminal42/contao-node/src/Terminal42NodeBundle.php line 18

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * Node Bundle for Contao Open Source CMS.
  5.  *
  6.  * @copyright  Copyright (c) 2019, terminal42 gmbh
  7.  * @author     terminal42 <https://terminal42.ch>
  8.  * @license    MIT
  9.  */
  10. namespace Terminal42\NodeBundle;
  11. use Symfony\Component\DependencyInjection\ContainerBuilder;
  12. use Symfony\Component\HttpKernel\Bundle\Bundle;
  13. class Terminal42NodeBundle extends Bundle
  14. {
  15.     /**
  16.      * {@inheritdoc}
  17.      */
  18.     public function build(ContainerBuilder $container): void
  19.     {
  20.     }
  21. }