returnObjectOrThrowException() public static method

public static returnObjectOrThrowException ( string $className, object $resultObj ) : object
$className string
$resultObj object
return object returns the passed object if successful
 public function submitForSettlementNoValidate($transactionId, $amount = null)
 {
     $result = $this->submitForSettlement($transactionId, $amount);
     return Util::returnObjectOrThrowException(__CLASS__, $result);
 }
 /**
  * update a creditcard record, assuming validations will pass
  *
  * if calling this method in context, $token
  * is the 2nd attribute. $token is not sent in object context.
  * returns a CreditCard object on success
  *
  * @access public
  * @param array $attributes
  * @param string $token
  * @return CreditCard
  * @throws Exception\ValidationsFailed
  */
 public function updateNoValidate($token, $attributes)
 {
     $result = $this->update($token, $attributes);
     return Util::returnObjectOrThrowException(__CLASS__, $result);
 }
 /**
  * update an address record, assuming validations will pass
  *
  * if calling this method in context,
  * customerOrId is the 2nd attribute, addressId 3rd.
  * customerOrId & addressId are not sent in object context.
  *
  * @access public
  * @param array $transactionAttribs
  * @param string $customerId
  * @return object Transaction
  * @throws Exception\ValidationsFailed
  * @see Address::update()
  */
 public function updateNoValidate($customerOrId, $addressId, $attributes)
 {
     $result = $this->update($customerOrId, $addressId, $attributes);
     return Util::returnObjectOrThrowException(__CLASS__, $result);
 }
Example #4
0
 public function testReturnObject()
 {
     $this->success = true;
     $this->transaction = new stdClass();
     $t = Braintree\Util::returnObjectOrThrowException('Braintree\\Transaction', $this);
     $this->assertInternalType('object', $t);
 }