<?php
namespace App\Integrations\Auth;
use App\Integrations\Auth\DependencyInjection\AuthExtension;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class AuthBundle extends Bundle
{
protected function getContainerExtensionClass()
{
return AuthExtension::class;
}
}