<?php
declare(strict_types=1);
/*
* Web-Tools Bundle for Contao Open Source CMS
*
* Copyright (c) 2022 pdir / digital agentur // pdir GmbH
*
* @package webtools-bundle
* @link https://pdir.de/contao-webtools/
* @license LGPL-3.0-or-later
* @author Mathias Arzberger <develop@pdir.de>
* @author Christian Mette <develop@pdir.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Pdir\ContaoWebtoolsBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
// Load pdir global functions
require_once __DIR__.'/../functions/pdump.php';
class PdirContaoWebtoolsBundle extends Bundle
{
public function getPath(): string
{
return \dirname(__DIR__);
}
}