| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 13 | class PurchaseRequest extends CommonAbstractRequest |
||
| 14 | { |
||
| 15 | use \ByTIC\Omnipay\Common\Message\Traits\ParametersTrait; |
||
| 16 | use \ByTIC\Omnipay\Common\Message\Traits\HasLanguageRequestTrait; |
||
| 17 | use \ByTIC\Omnipay\Common\Message\Traits\SendDataRequestTrait; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @inheritDoc |
||
| 21 | */ |
||
| 22 | public function getData() |
||
| 26 | ]; |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param AuthorizeResponse $response |
||
| 31 | */ |
||
| 32 | public function setAuthorizeResponse($response) |
||
| 33 | { |
||
| 34 | $this->setParameter('authorizeResponse', $response); |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return AuthorizeResponse |
||
| 39 | */ |
||
| 40 | public function getAuthorizeResponse() |
||
| 43 | } |
||
| 44 | } |
||
| 45 |