Files
kupshop/bundles/KupShop/UserOauthBundle/UserOauthBundle.php
2025-08-02 16:30:27 +02:00

15 lines
351 B
PHP

<?php
namespace KupShop\UserOauthBundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class UserOauthBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
$container->addCompilerPass(new DependencyInjection\Compiler\ResourceOwnerPass());
}
}