vendor/inszenium/isotope-export/src/InszeniumIsotopeExportBundle.php line 24

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * This file is part of Inszenium Isotope eCommerce OrderExport.
  5.  * 
  6.  * (c) inszenium 2025 <https://inszenium.de>
  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.  *
  11.  * @author     Kirsten Roschanski <kirsten.roschanski@inszenium.de>
  12.  * @package    InszeniumIsotopeOrderExport
  13.  * @license    LGPL 
  14.  * @link       https://github.com/inszenium/isotope-export
  15.  */
  16. namespace Inszenium\IsotopeExport;
  17. use Symfony\Component\HttpKernel\Bundle\Bundle;
  18. use Symfony\Component\DependencyInjection\ContainerBuilder;
  19. class InszeniumIsotopeExportBundle extends Bundle
  20. {
  21.     public function getPath(): string
  22.     {
  23.         return \dirname(__DIR__);
  24.     }
  25. }