vendor/presta/sitemap-bundle/src/PrestaSitemapBundle.php line 21

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the PrestaSitemapBundle package.
  4.  *
  5.  * (c) PrestaConcept <https://prestaconcept.net>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Presta\SitemapBundle;
  11. use Symfony\Component\HttpKernel\Bundle\Bundle;
  12. /**
  13.  * Render/Dump Symfony application sitemap in respect of sitemap protocol.
  14.  *
  15.  * https://www.sitemaps.org/
  16.  */
  17. class PrestaSitemapBundle extends Bundle
  18. {
  19.     /**
  20.      * @inheritDoc
  21.      */
  22.     public function getPath(): string
  23.     {
  24.         return \dirname(__DIR__);
  25.     }
  26. }