src/AuthenticationBundle.php line 9

Open in your IDE?
  1. <?php
  2. namespace App;
  3. use App\DependencyInjection\AuthenticationExtension;
  4. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  5. use Symfony\Component\HttpKernel\Bundle\Bundle;
  6. class AuthenticationBundle extends Bundle
  7. {
  8.     public function getContainerExtension(): ?ExtensionInterface
  9.     {
  10.         return new AuthenticationExtension();
  11.     }
  12. }