Skip to content

Commit

Permalink
Treblle Building configuration fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JustSteveKing committed Oct 9, 2023
1 parent e71911c commit 6cff7a5
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,21 @@ public function getConfigTreeBuilder()
// @phpstan-ignore-next-line
$treeBuilder->getRootNode()
->children()
->scalarNode('endpoint_url')->defaultValue('https://rocknrolla.treblle.com')->end()
->scalarNode('project_id')->end()
->scalarNode('api_key')->end()
->booleanNode('debug')->end()
->arrayNode('masked')->scalarPrototype()->end()
->arrayNode('ignore')->scalarPrototype()->end()
->scalarNode('endpoint_url')
->defaultValue('https://rocknrolla.treblle.com')
->end()
->scalarNode('project_id')
->end()
->scalarNode('api_key')
->end()
->booleanNode('debug')
->end()
->arrayNode('masked')
->scalarPrototype()->end()
->end()
->arrayNode('ignore')
->scalarPrototype()->end()
->end()
->end();

return $treeBuilder;
Expand Down

0 comments on commit 6cff7a5

Please sign in to comment.