Skip to content

Commit

Permalink
Fix EOL spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
delatbabel committed Jan 13, 2016
1 parent 8aa60e3 commit 9bf0380
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions src/Gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public function capture(array $parameters = array())
* To charge a credit card, you create a new charge object. If your API key
* is in test mode, the supplied card won't actually be charged, though
* everything else will occur as if in live mode. (Stripe assumes that the
* charge would have completed successfully).
* charge would have completed successfully).
*
* Either a customerReference or a card is required. If a customerReference
* is passed in then the cardReference must be the reference of a card
Expand Down Expand Up @@ -354,7 +354,7 @@ public function deleteCard(array $parameters = array())
* track multiple charges that are associated with the same customer.
* The API allows you to create, delete, and update your customers.
* You can retrieve individual customers as well as a list of all of
* your customers.
* your customers.
*
* @param array $parameters
*
Expand Down Expand Up @@ -384,7 +384,7 @@ public function createCustomer(array $parameters = array())
* a result of updating the customer's card.)
*
* This request accepts mostly the same arguments as the customer
* creation call.
* creation call.
*
* @param array $parameters
*
Expand All @@ -399,7 +399,7 @@ public function updateCustomer(array $parameters = array())
* Delete a customer.
*
* Permanently deletes a customer. It cannot be undone. Also immediately
* cancels any active subscriptions on the customer.
* cancels any active subscriptions on the customer.
*
* @param array $parameters
*
Expand Down Expand Up @@ -434,7 +434,7 @@ public function deleteCustomer(array $parameters = array())
* You can then use a token anywhere in our API that a card or bank account
* is accepted. Note that tokens are not meant to be stored or used more
* than once—to store these details for use later, you should create
* Customer or Recipient objects.
* Customer or Recipient objects.
*
* @param array $parameters
*
Expand Down
2 changes: 1 addition & 1 deletion src/Message/DeleteCustomerRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Stripe Delete Customer Request.
*
* Permanently deletes a customer. It cannot be undone. Also immediately
* cancels any active subscriptions on the customer.
* cancels any active subscriptions on the customer.
*
* @link https://stripe.com/docs/api#delete_customer
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Message/FetchTokenRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* You can then use a token anywhere in our API that a card or bank account
* is accepted. Note that tokens are not meant to be stored or used more
* than once—to store these details for use later, you should create
* Customer or Recipient objects.
* Customer or Recipient objects.
*
* @link https://stripe.com/docs/api#tokens
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Message/PurchaseRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* To charge a credit card, you create a new charge object. If your API key
* is in test mode, the supplied card won't actually be charged, though
* everything else will occur as if in live mode. (Stripe assumes that the
* charge would have completed successfully).
* charge would have completed successfully).
*
* Example:
*
Expand Down
2 changes: 1 addition & 1 deletion src/Message/RefundRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Once entirely refunded, a charge can't be refunded again.
* This method will return an error when called on an
* already-refunded charge, or when trying to refund more
* money than is left on a charge.
* money than is left on a charge.
*
* Example -- note this example assumes that the purchase has been successful
* and that the transaction ID returned from the purchase is held in $sale_id.
Expand Down
2 changes: 1 addition & 1 deletion src/Message/UpdateCustomerRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* a result of updating the customer's card.)
*
* This request accepts mostly the same arguments as the customer
* creation call.
* creation call.
*
* @link https://stripe.com/docs/api#update_customer
*/
Expand Down

0 comments on commit 9bf0380

Please sign in to comment.