<?php declare(strict_types=1);namespace OnlineOcenka\EducationBundle;use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;use Symfony\Component\HttpKernel\Bundle\Bundle;class EducationBundle extends Bundle{ public function getPath(): string { return \dirname(__DIR__); } public function createContainerExtension(): ?ExtensionInterface { return new EducationExtension(); }}