Skip to content

Commit ada50e3

Browse files
author
mostafa
committed
refactoring
1 parent ca7916c commit ada50e3

8 files changed

+33
-17
lines changed

src/LaraStripeServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
/**
66
* @author @code4mk <[email protected]>
7-
* @author @0devco <with@0dev.co>
8-
* @copyright 0dev.co (https://0dev.co)
7+
* @author @kawsarsoft <with@kawsarsoft.com>
8+
* @copyright Kawsar Soft. (http://kawsarsoft.com)
99
*/
1010

1111
use Illuminate\Support\ServiceProvider;

src/StripeBalance.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
/**
55
* @author @code4mk <[email protected]>
6-
* @author @0devco <with@0dev.co>
7-
* @copyright 0dev.co (https://0dev.co)
6+
* @author @kawsarsoft <with@kawsarsoft.com>
7+
* @copyright Kawsar Soft. (http://kawsarsoft.com)
88
*/
99

1010
use Stripe\Stripe;

src/StripeCharge.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
/**
55
* @author @code4mk <[email protected]>
6-
* @author @0devco <with@0dev.co>
7-
* @copyright 0dev.co (https://0dev.co)
6+
* @author @kawsarsoft <with@kawsarsoft.com>
7+
* @copyright Kawsar Soft. (http://kawsarsoft.com)
88
*/
99

1010
use Stripe\Stripe;

src/StripeCheckout.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
/**
55
* @author @code4mk <[email protected]>
6-
* @author @0devco <with@0dev.co>
7-
* @copyright 0dev.co (https://0dev.co)
6+
* @author @kawsarsoft <with@kawsarsoft.com>
7+
* @copyright Kawsar Soft. (http://kawsarsoft.com)
88
*/
99

1010
use Stripe\Checkout\Session;

src/StripeCoupon.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
<?php
22
namespace Code4mk\LaraStripe;
33

4-
use Stripe\Stripe;
5-
use Stripe\Coupon;
6-
use Config;
4+
/**
5+
* @author @code4mk <[email protected]>
6+
* @author @kawsarsoft <[email protected]>
7+
* @copyright Kawsar Soft. (http://kawsarsoft.com)
8+
*/
79

810
// https://stripe.com/docs/api/coupons
911

src/StripeCustomer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
/**
55
* @author @code4mk <[email protected]>
6-
* @author @0devco <with@0dev.co>
7-
* @copyright 0dev.co (https://0dev.co)
6+
* @author @kawsarsoft <with@kawsarsoft.com>
7+
* @copyright Kawsar Soft. (http://kawsarsoft.com)
88
*/
99

1010
// https://stripe.com/docs/saving-cards

src/StripePlans.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
<?php
22
namespace Code4mk\LaraStripe;
33

4+
/**
5+
* @author @code4mk <[email protected]>
6+
* @author @kawsarsoft <[email protected]>
7+
* @copyright Kawsar Soft. (http://kawsarsoft.com)
8+
*/
9+
410
use Stripe\Customer;
511
use Stripe\Stripe;
612
use Stripe\Plan;

src/StripeSubscription.php

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
<?php
22
namespace Code4mk\LaraStripe;
33

4-
use Stripe\Customer;
5-
use Stripe\Stripe;
4+
/**
5+
* @author @code4mk <[email protected]>
6+
* @author @kawsarsoft <[email protected]>
7+
* @copyright Kawsar Soft. (http://kawsarsoft.com)
8+
*/
9+
610
use Stripe\Subscription;
11+
use Stripe\Stripe;
712
use Config;
813

9-
// https://stripe.com/docs/api/subscriptions/create
10-
14+
/**
15+
* Subscription class
16+
*
17+
* @source https://stripe.com/docs/api/subscriptions/create
18+
*/
1119
class StripeSubscription
1220
{
1321
/**

0 commit comments

Comments
 (0)