src/Integrations/Auth/AuthBundle.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Integrations\Auth;
  3. use App\Integrations\Auth\DependencyInjection\AuthExtension;
  4. use Symfony\Component\HttpKernel\Bundle\Bundle;
  5. class AuthBundle extends Bundle
  6. {
  7.     protected function getContainerExtensionClass()
  8.     {
  9.         return AuthExtension::class;
  10.     }
  11. }