Skip to content

Commit 9bf0380

Browse files
committed
Fix EOL spacing
1 parent 8aa60e3 commit 9bf0380

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

src/Gateway.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public function capture(array $parameters = array())
188188
* To charge a credit card, you create a new charge object. If your API key
189189
* is in test mode, the supplied card won't actually be charged, though
190190
* everything else will occur as if in live mode. (Stripe assumes that the
191-
* charge would have completed successfully).
191+
* charge would have completed successfully).
192192
*
193193
* Either a customerReference or a card is required. If a customerReference
194194
* is passed in then the cardReference must be the reference of a card
@@ -354,7 +354,7 @@ public function deleteCard(array $parameters = array())
354354
* track multiple charges that are associated with the same customer.
355355
* The API allows you to create, delete, and update your customers.
356356
* You can retrieve individual customers as well as a list of all of
357-
* your customers.
357+
* your customers.
358358
*
359359
* @param array $parameters
360360
*
@@ -384,7 +384,7 @@ public function createCustomer(array $parameters = array())
384384
* a result of updating the customer's card.)
385385
*
386386
* This request accepts mostly the same arguments as the customer
387-
* creation call.
387+
* creation call.
388388
*
389389
* @param array $parameters
390390
*
@@ -399,7 +399,7 @@ public function updateCustomer(array $parameters = array())
399399
* Delete a customer.
400400
*
401401
* Permanently deletes a customer. It cannot be undone. Also immediately
402-
* cancels any active subscriptions on the customer.
402+
* cancels any active subscriptions on the customer.
403403
*
404404
* @param array $parameters
405405
*
@@ -434,7 +434,7 @@ public function deleteCustomer(array $parameters = array())
434434
* You can then use a token anywhere in our API that a card or bank account
435435
* is accepted. Note that tokens are not meant to be stored or used more
436436
* than once—to store these details for use later, you should create
437-
* Customer or Recipient objects.
437+
* Customer or Recipient objects.
438438
*
439439
* @param array $parameters
440440
*

src/Message/DeleteCustomerRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Stripe Delete Customer Request.
1010
*
1111
* Permanently deletes a customer. It cannot be undone. Also immediately
12-
* cancels any active subscriptions on the customer.
12+
* cancels any active subscriptions on the customer.
1313
*
1414
* @link https://stripe.com/docs/api#delete_customer
1515
*/

src/Message/FetchTokenRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* You can then use a token anywhere in our API that a card or bank account
1919
* is accepted. Note that tokens are not meant to be stored or used more
2020
* than once—to store these details for use later, you should create
21-
* Customer or Recipient objects.
21+
* Customer or Recipient objects.
2222
*
2323
* @link https://stripe.com/docs/api#tokens
2424
*/

src/Message/PurchaseRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* To charge a credit card, you create a new charge object. If your API key
1212
* is in test mode, the supplied card won't actually be charged, though
1313
* everything else will occur as if in live mode. (Stripe assumes that the
14-
* charge would have completed successfully).
14+
* charge would have completed successfully).
1515
*
1616
* Example:
1717
*

src/Message/RefundRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Once entirely refunded, a charge can't be refunded again.
2525
* This method will return an error when called on an
2626
* already-refunded charge, or when trying to refund more
27-
* money than is left on a charge.
27+
* money than is left on a charge.
2828
*
2929
* Example -- note this example assumes that the purchase has been successful
3030
* and that the transaction ID returned from the purchase is held in $sale_id.

src/Message/UpdateCustomerRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* a result of updating the customer's card.)
3131
*
3232
* This request accepts mostly the same arguments as the customer
33-
* creation call.
33+
* creation call.
3434
*
3535
* @link https://stripe.com/docs/api#update_customer
3636
*/

0 commit comments

Comments
 (0)