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,16 @@
<?php
namespace Bluesquare\BillingBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
class BillingController extends AbstractController
{
/**
* @Route("/bluesquare/billing-bundle/webhook", name="bluesquare.billing_bundle.webhook")
*/
public function webhook()
{
}
}