add services && controller && first configuration tree builder

This commit is contained in:
2019-07-16 11:58:38 +02:00
parent d89a7aba8d
commit e0dee9e9d8
9 changed files with 188 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<?php
namespace Acme\SocialBundle\DependencyInjection;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;
class Configuration implements ConfigurationInterface
{
public function getConfigTreeBuilder()
{
$treeBuilder = new TreeBuilder('billing');
$treeBuilder->getRootNode()->children()
->arrayNode('stripe')->children()
->scalarNode('stripe_api_key_pub')->end()
->scalarNode('stripe_api_key')->end()
->scalarNode('stripe_webhook_key')->end()
->end()
->end();
return $treeBuilder;
}
}