Skip to content

Instantly share code, notes, and snippets.

@nachopants
Created November 3, 2014 06:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nachopants/7f5f9a4b5061ff4a02f4 to your computer and use it in GitHub Desktop.
Save nachopants/7f5f9a4b5061ff4a02f4 to your computer and use it in GitHub Desktop.
<?php
namespace Heffron\Bundle\APIBundle\Controller;
use FOS\RestBundle\Controller\FOSRestController;
use FOS\RestBundle\Controller\Annotations\Post;
use FOS\RestBundle\Controller\Annotations\Get;
use FOS\RestBundle\Controller\Annotations\Route;
use FOS\RestBundle\Request\ParamFetcher;
use FOS\RestBundle\Controller\Annotations\RequestParam;
use Heffron\Bundle\APIBundle\Services\Stripe\Client;
use Heffron\Bundle\APIBundle\Entity\Payment;
use Heffron\Bundle\APIBundle\Entity\FundSummary;
use Heffron\Bundle\AWSBundle\Controller\SesController;
/**
* Payment controller.
*
*/
class PaymentController extends FOSRestController
{
protected $client;
public function getBallsAction()
{
$return = $AWSBUNDLESESCONTROLLER->getDeliverAction();
$view = $this->view($result, 200);
return $this->handleView($view);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment