PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
academe
/
authorizenet-objects
/
src
/
Response
/
Collections
<?php namespace Academe\AuthorizeNet\Response\Collections; /** * Collection of response messages, with an overall result code. */ use Academe\AuthorizeNet\Request\Model\HostedPaymentSetting; use Academe\AuthorizeNet\Response\Model\Message; use Academe\AuthorizeNet\Response\HasDataTrait; use Academe\AuthorizeNet\AbstractCollection; class Messages extends AbstractCollection { use HasDataTrait; public function __construct(array $data = []) { $this->setData($data); // An array of message records. foreach ($this->getDataValue('message') as $message_data) { $this->push(new Message($message_data)); } } protected function hasExpectedStrictType($item) { // Make sure the item is the correct type, and is not empty. return $item instanceof Message; } }
[-] SplitTenderPayments.php
[edit]
[-] UserFields.php
[edit]
[+]
..
[-] TransactionMessages.php
[edit]
[-] Messages.php
[edit]
[-] Errors.php
[edit]
[-] LineItems.php
[edit]