symfony-billing/BillingBundle/Controller/BillingController.php

17 lines
329 B
PHP

<?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()
{
}
}