services() ->defaults() ->autowire() ->autoconfigure() ->public(); $excludes = [ 'Serializer/Exclusion', 'Helper/BatchIdToEntityHelper.php', ]; $services->load('Mautic\\ApiBundle\\', '../') ->exclude('../{'.implode(',', array_merge(MauticCoreExtension::DEFAULT_EXCLUDES, $excludes)).'}'); $services->load('Mautic\\ApiBundle\\Entity\\oAuth2\\', '../Entity/oAuth2/*Repository.php'); $services->get(Mautic\ApiBundle\Controller\oAuth2\AuthorizeController::class) ->arg('$authorizeForm', service('fos_oauth_server.authorize.form')) ->arg('$authorizeFormHandler', service('fos_oauth_server.authorize.form.handler.default')) ->arg('$oAuth2Server', service('fos_oauth_server.server')) ->arg('$clientManager', service('fos_oauth_server.client_manager.default')); $services->alias('mautic.api.model.client', Mautic\ApiBundle\Model\ClientModel::class); };