vendor/markocupic/contao-twig-assets/src/MarkocupicContaoTwigAssets.php line 21

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * This file is part of Contao Twig Assets.
  5.  *
  6.  * (c) Marko Cupic <m.cupic@gmx.ch>
  7.  * @license GPL-3.0-or-later
  8.  * For the full copyright and license information,
  9.  * please view the LICENSE file that was distributed with this source code.
  10.  * @link https://github.com/markocupic/contao-twig-assets
  11.  */
  12. namespace Markocupic\ContaoTwigAssets;
  13. use Markocupic\ContaoTwigAssets\DependencyInjection\MarkocupicContaoTwigAssetsExtension;
  14. use Symfony\Component\DependencyInjection\ContainerBuilder;
  15. use Symfony\Component\HttpKernel\Bundle\Bundle;
  16. class MarkocupicContaoTwigAssets extends Bundle
  17. {
  18.     public function getPath(): string
  19.     {
  20.         return \dirname(__DIR__);
  21.     }
  22.     public function getContainerExtension(): MarkocupicContaoTwigAssetsExtension
  23.     {
  24.         return new MarkocupicContaoTwigAssetsExtension();
  25.     }
  26.     /**
  27.      * {@inheritdoc}
  28.      */
  29.     public function build(ContainerBuilder $container): void
  30.     {
  31.         parent::build($container);
  32.     }
  33. }