File tree Expand file tree Collapse file tree 2 files changed +17
-17
lines changed
Expand file tree Collapse file tree 2 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 1212class Configuration implements ConfigurationInterface
1313{
1414 /**
15- * {@inheritdoc}
16- */
15+ * {@inheritdoc}
16+ */
1717 public function getConfigTreeBuilder ()
1818 {
19- $ treeBuilder = new TreeBuilder ();
20- $ rootNode = $ treeBuilder ->root ('symfony_debug_toolbar_git ' );
19+ $ treeBuilder = new TreeBuilder ();
20+ $ rootNode = $ treeBuilder ->root ('symfony_debug_toolbar_git ' );
2121
22- $ rootNode
23- ->children ()
24- ->scalarNode ('repository_commit_url ' )
25- ->end ()
26- ;
22+ $ rootNode
23+ ->children ()
24+ ->scalarNode ('repository_commit_url ' )
25+ ->end ()
26+ ;
2727
28- return $ treeBuilder ;
28+ return $ treeBuilder ;
2929 }
3030}
Original file line number Diff line number Diff line change 1414class SymfonyDebugToolbarGitExtension extends Extension
1515{
1616 /**
17- * {@inheritdoc}
18- */
17+ * {@inheritdoc}
18+ */
1919 public function load (array $ configs , ContainerBuilder $ container )
2020 {
21- $ configuration = new Configuration ();
22- $ config = $ this ->processConfiguration ($ configuration , $ configs );
21+ $ configuration = new Configuration ();
22+ $ config = $ this ->processConfiguration ($ configuration , $ configs );
2323
24- $ loader = new Loader \YamlFileLoader ($ container , new FileLocator (__DIR__ .'/../Resources/config ' ));
25- $ loader ->load ('container.yml ' );
24+ $ loader = new Loader \YamlFileLoader ($ container , new FileLocator (__DIR__ .'/../Resources/config ' ));
25+ $ loader ->load ('container.yml ' );
2626
27- $ container ->setParameter ('symfony_debug_toolbar_git.repository_commit_url ' , $ config ['repository_commit_url ' ]);
27+ $ container ->setParameter ('symfony_debug_toolbar_git.repository_commit_url ' , $ config ['repository_commit_url ' ]);
2828 }
2929}
You can’t perform that action at this time.
0 commit comments