vendor/gigadrive/markdown-wiki-bundle/src/MarkdownWikiBundle.php line 27

Open in your IDE?
  1. <?php
  2. /*
  3.  * Copyright (C) 2021 - All rights reserved.
  4.  * https://gigadrivegroup.com
  5.  *
  6.  * This program is free software: you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation, either version 3 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program. If not, see <https://gnu.org/licenses/>
  18.  */
  19. namespace Gigadrive\Bundle\MarkdownWikiBundle;
  20. use Gigadrive\Bundle\MarkdownWikiBundle\DependencyInjection\MarkdownWikiBundleExtension;
  21. use JetBrains\PhpStorm\Pure;
  22. use Symfony\Component\DependencyInjection\ContainerBuilder;
  23. use Symfony\Component\HttpKernel\Bundle\Bundle;
  24. class MarkdownWikiBundle extends Bundle {
  25.     public function build(ContainerBuilder $container) {
  26.         parent::build($container); // TODO: Change the autogenerated stub
  27.     }
  28.     #[Pure] public function getContainerExtension(): MarkdownWikiBundleExtension {
  29.         return new MarkdownWikiBundleExtension;
  30.     }
  31. }