vendor/symfonycasts/sass-bundle/src/SymfonycastsSassBundle.php line 16

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the SymfonyCasts SassBundle package.
  4.  * Copyright (c) SymfonyCasts <https://symfonycasts.com/>
  5.  * For the full copyright and license information, please view the LICENSE
  6.  * file that was distributed with this source code.
  7.  */
  8. namespace Symfonycasts\SassBundle;
  9. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  10. use Symfony\Component\HttpKernel\Bundle\Bundle;
  11. use Symfonycasts\SassBundle\DependencyInjection\SymfonycastsSassExtension;
  12. class SymfonycastsSassBundle extends Bundle
  13. {
  14.     protected function createContainerExtension(): ?ExtensionInterface
  15.     {
  16.         return new SymfonycastsSassExtension();
  17.     }
  18. }