Current Path : /var/www/storage/vendor/braintree/braintree_php/lib/Braintree/Transaction/ |
Current File : /var/www/storage/vendor/braintree/braintree_php/lib/Braintree/Transaction/CreditCardDetails.php |
<?php /** * CreditCard details from a transaction * creates an instance of CreditCardDetails * * @package Braintree * @subpackage Transaction * @copyright 2014 Braintree, a division of PayPal, Inc. * * @property-read string $bin * @property-read string $cardType * @property-read string $expirationDate * @property-read string $expirationMonth * @property-read string $expirationYear * @property-read string $issuerLocation * @property-read string $last4 * @property-read string $maskedNumber * @property-read string $token * @uses Braintree_Instance inherits methods */ class Braintree_Transaction_CreditCardDetails extends Braintree_Instance { protected $_attributes = array(); /** * @ignore */ public function __construct($attributes) { parent::__construct($attributes); $this->_attributes['expirationDate'] = $this->expirationMonth . '/' . $this->expirationYear; $this->_attributes['maskedNumber'] = $this->bin . '******' . $this->last4; } }