PATH:
home
/
lab2454c
/
tripvare.com
/
backup
/
vendor
/
academe
/
authorizenet-objects
/
src
/
Request
<?php namespace Academe\AuthorizeNet\Request; /** * */ use Academe\AuthorizeNet\Auth\MerchantAuthentication; use Academe\AuthorizeNet\AbstractModel; abstract class AbstractRequest extends AbstractModel { /** * All requests require authentication. */ protected $merchantAuthentication; /** * The suffix applied to the request name when sending the request. */ protected $objectNameSuffix = 'Request'; /** * Set the authentication object. */ public function __construct(MerchantAuthentication $merchantAuthentication) { parent::__construct(); $this->setMerchantAuthentication($merchantAuthentication); } /** * API authentication details. */ protected function setMerchantAuthentication(MerchantAuthentication $value) { $this->merchantAuthentication = $value; } }
[-] CreateCustomerProfile.php
[edit]
[-] CreateTransaction.php
[edit]
[+]
Model
[+]
..
[+]
Collections
[-] GetHostedPaymentPage.php
[edit]
[-] CreateCustomerPaymentProfile.php
[edit]
[-] AbstractRequest.php
[edit]
[+]
Transaction
[-] GetTransactionDetails.php
[edit]
[-] UpdateSplitTenderGroup.php
[edit]