Created
November 3, 2014 06:07
-
-
Save nachopants/7f5f9a4b5061ff4a02f4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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