vendor/madeyourday/contao-rocksolid-custom-elements/src/RockSolidCustomElementsBundle.php line 20

Open in your IDE?
  1. <?php
  2. /*
  3.  * Copyright MADE/YOUR/DAY OG <mail@madeyourday.net>
  4.  *
  5.  * For the full copyright and license information, please view the LICENSE
  6.  * file that was distributed with this source code.
  7.  */
  8. namespace MadeYourDay\RockSolidCustomElements;
  9. use MadeYourDay\RockSolidCustomElements\DependencyInjection\RockSolidCustomElementsExtension;
  10. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  11. use Symfony\Component\HttpKernel\Bundle\Bundle;
  12. /**
  13.  * Configures the RockSolid Custom Elements bundle.
  14.  *
  15.  * @author Martin Auswöger <martin@madeyourday.net>
  16.  */
  17. class RockSolidCustomElementsBundle extends Bundle
  18. {
  19.     /**
  20.      * {@inheritdoc}
  21.      */
  22.     public function getContainerExtension(): ?ExtensionInterface
  23.     {
  24.         return new RockSolidCustomElementsExtension();
  25.     }
  26. }