forked from braintree/braintree_php
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81bcfef
commit 056aae8
Showing
12 changed files
with
27 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,7 +45,7 @@ | |
* 'email' => '[email protected]', | ||
* 'phone' => '419-555-1234', | ||
* 'fax' => '419-555-1235', | ||
* 'website' => 'http://braintreepaymentsolutions.com' | ||
* 'website' => 'http://braintreepayments.com' | ||
* ), | ||
* 'billing' => array( | ||
* 'firstName' => 'Carl', | ||
|
@@ -139,7 +139,7 @@ | |
* | ||
* <b>== More information ==</b> | ||
* | ||
* For more detailed information on Transactions, see {@link http://www.braintreepaymentsolutions.com/gateway/transaction-api http://www.braintreepaymentsolutions.com/gateway/transaction-api} | ||
* For more detailed information on Transactions, see {@link http://www.braintreepayments.com/gateway/transaction-api http://www.braintreepaymentsolutions.com/gateway/transaction-api} | ||
* | ||
* @package Braintree | ||
* @category Resources | ||
|
@@ -369,7 +369,7 @@ public static function saleNoValidate($attribs) | |
* | ||
* If <b>query</b> is a string, the search will be a basic search. | ||
* If <b>query</b> is a hash, the search will be an advanced search. | ||
* For more detailed information and examples, see {@link http://www.braintreepaymentsolutions.com/gateway/transaction-api#searching http://www.braintreepaymentsolutions.com/gateway/transaction-api} | ||
* For more detailed information and examples, see {@link http://www.braintreepayments.com/gateway/transaction-api#searching http://www.braintreepaymentsolutions.com/gateway/transaction-api} | ||
* | ||
* @param mixed $query search query | ||
* @param array $options options such as page number | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,7 +87,7 @@ function testSale_withAllAttributes() | |
'email' => '[email protected]', | ||
'phone' => '419-555-1234', | ||
'fax' => '419-555-1235', | ||
'website' => 'http://braintreepaymentsolutions.com' | ||
'website' => 'http://braintreepayments.com' | ||
), | ||
'billing' => array( | ||
'firstName' => 'Carl', | ||
|
@@ -148,7 +148,7 @@ function testSale_withAllAttributes() | |
$this->assertEquals('[email protected]', $transaction->customerDetails->email); | ||
$this->assertEquals('419-555-1234', $transaction->customerDetails->phone); | ||
$this->assertEquals('419-555-1235', $transaction->customerDetails->fax); | ||
$this->assertEquals('http://braintreepaymentsolutions.com', $transaction->customerDetails->website); | ||
$this->assertEquals('http://braintreepayments.com', $transaction->customerDetails->website); | ||
|
||
$this->assertEquals('Carl', $transaction->billingDetails->firstName); | ||
$this->assertEquals('Jones', $transaction->billingDetails->lastName); | ||
|