Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
pulzarraider committed Jun 4, 2024
1 parent bcbd98f commit c5acae6
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ public function getConfigTreeBuilder(): TreeBuilder

$rootNode
->children()
->scalarNode('auth_cache')
->cannotBeEmpty()
->defaultValue('cache.app')
->info('A cache for storing access tokens.')
->end()
->enumNode('forced_transport')
->values(['grpc', 'rest'])
->defaultNull()
->info('A forced transport for all messenger transports.')
->end()
->scalarNode('auth_cache')
->cannotBeEmpty()
->defaultValue('cache.app')
->info('A cache for storing access tokens.')
->end()
->enumNode('forced_transport')
->values(['grpc', 'rest'])
->defaultNull()
->info('A forced transport for all messenger transports.')
->end()
->end()
;

Expand Down

0 comments on commit c5acae6

Please sign in to comment.