bundles/EducationBundle/src/EducationBundle.php line 8

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace OnlineOcenka\EducationBundle;
  3. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  4. use Symfony\Component\HttpKernel\Bundle\Bundle;
  5. class EducationBundle extends Bundle
  6. {
  7.     public function getPath(): string
  8.     {
  9.         return \dirname(__DIR__);
  10.     }
  11.     public function createContainerExtension(): ?ExtensionInterface
  12.     {
  13.         return new EducationExtension();
  14.     }
  15. }