<?php declare(strict_types=1);namespace OnlineOcenka\DealsDistributionBundle;use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;use Symfony\Component\HttpKernel\Bundle\Bundle;class DealsDistributionBundle extends Bundle{ public function getPath(): string { return \dirname(__DIR__); } protected function createContainerExtension(): ?ExtensionInterface { return new DealsDistributionExtension($this->getName()); }}