@@ -24,8 +24,8 @@ discard block |
||
24 | 24 | protected $defer = false; |
25 | 25 | |
26 | 26 | /** |
27 | - * Publishes all the config file this package needs to function |
|
28 | - */ |
|
27 | + * Publishes all the config file this package needs to function |
|
28 | + */ |
|
29 | 29 | public function boot() |
30 | 30 | { |
31 | 31 | $config = realpath(__DIR__.'/../resources/config/paystack.php'); |
@@ -36,8 +36,8 @@ discard block |
||
36 | 36 | } |
37 | 37 | |
38 | 38 | /** |
39 | - * Register the application services. |
|
40 | - */ |
|
39 | + * Register the application services. |
|
40 | + */ |
|
41 | 41 | public function register() |
42 | 42 | { |
43 | 43 | $this->app->bind('laravel-paystack', function () { |
@@ -48,9 +48,9 @@ discard block |
||
48 | 48 | } |
49 | 49 | |
50 | 50 | /** |
51 | - * Get the services provided by the provider |
|
52 | - * @return array |
|
53 | - */ |
|
51 | + * Get the services provided by the provider |
|
52 | + * @return array |
|
53 | + */ |
|
54 | 54 | public function provides() |
55 | 55 | { |
56 | 56 | return ['laravel-paystack']; |
@@ -40,7 +40,7 @@ |
||
40 | 40 | */ |
41 | 41 | public function register() |
42 | 42 | { |
43 | - $this->app->bind('laravel-paystack', function () { |
|
43 | + $this->app->bind('laravel-paystack', function() { |
|
44 | 44 | |
45 | 45 | return new Paystack; |
46 | 46 |
@@ -102,12 +102,11 @@ discard block |
||
102 | 102 | |
103 | 103 | |
104 | 104 | /** |
105 | - |
|
106 | - * Initiate a payment request to Paystack |
|
107 | - * Included the option to pass the payload to this method for situations |
|
108 | - * when the payload is built on the fly (not passed to the controller from a view) |
|
109 | - * @return Paystack |
|
110 | - */ |
|
105 | + * Initiate a payment request to Paystack |
|
106 | + * Included the option to pass the payload to this method for situations |
|
107 | + * when the payload is built on the fly (not passed to the controller from a view) |
|
108 | + * @return Paystack |
|
109 | + */ |
|
111 | 110 | |
112 | 111 | public function makePaymentRequest( $data = null) |
113 | 112 | { |
@@ -181,11 +180,11 @@ discard block |
||
181 | 180 | } |
182 | 181 | |
183 | 182 | /** |
184 | - * Get the authorization callback response |
|
185 | - * In situations where Laravel serves as an backend for a detached UI, the api cannot redirect |
|
186 | - * and might need to take different actions based on the success or not of the transaction |
|
187 | - * @return array |
|
188 | - */ |
|
183 | + * Get the authorization callback response |
|
184 | + * In situations where Laravel serves as an backend for a detached UI, the api cannot redirect |
|
185 | + * and might need to take different actions based on the success or not of the transaction |
|
186 | + * @return array |
|
187 | + */ |
|
189 | 188 | public function getAuthorizationResponse($data) |
190 | 189 | { |
191 | 190 | $this->makePaymentRequest($data); |
@@ -589,10 +588,10 @@ discard block |
||
589 | 588 | } |
590 | 589 | |
591 | 590 | /** |
592 | - * Creates a subaccount to be used for split payments . Required params are business_name , settlement_bank , account_number , percentage_charge |
|
593 | - * |
|
594 | - * @return array |
|
595 | - */ |
|
591 | + * Creates a subaccount to be used for split payments . Required params are business_name , settlement_bank , account_number , percentage_charge |
|
592 | + * |
|
593 | + * @return array |
|
594 | + */ |
|
596 | 595 | |
597 | 596 | public function createSubAccount(){ |
598 | 597 | $data = [ |
@@ -613,10 +612,10 @@ discard block |
||
613 | 612 | } |
614 | 613 | |
615 | 614 | /** |
616 | - * Fetches details of a subaccount |
|
617 | - * @param subaccount code |
|
618 | - * @return array |
|
619 | - */ |
|
615 | + * Fetches details of a subaccount |
|
616 | + * @param subaccount code |
|
617 | + * @return array |
|
618 | + */ |
|
620 | 619 | public function fetchSubAccount($subaccount_code){ |
621 | 620 | |
622 | 621 | $this->setRequestOptions(); |
@@ -625,10 +624,10 @@ discard block |
||
625 | 624 | } |
626 | 625 | |
627 | 626 | /** |
628 | - * Lists all the subaccounts associated with the account |
|
629 | - * @param $per_page - Specifies how many records to retrieve per page , $page - SPecifies exactly what page to retrieve |
|
630 | - * @return array |
|
631 | - */ |
|
627 | + * Lists all the subaccounts associated with the account |
|
628 | + * @param $per_page - Specifies how many records to retrieve per page , $page - SPecifies exactly what page to retrieve |
|
629 | + * @return array |
|
630 | + */ |
|
632 | 631 | public function listSubAccounts($per_page,$page){ |
633 | 632 | |
634 | 633 | $this->setRequestOptions(); |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | */ |
87 | 87 | private function setRequestOptions() |
88 | 88 | { |
89 | - $authBearer = 'Bearer '. $this->secretKey; |
|
89 | + $authBearer = 'Bearer '.$this->secretKey; |
|
90 | 90 | |
91 | 91 | $this->client = new Client( |
92 | 92 | [ |
@@ -109,12 +109,12 @@ discard block |
||
109 | 109 | * @return Paystack |
110 | 110 | */ |
111 | 111 | |
112 | - public function makePaymentRequest( $data = null) |
|
112 | + public function makePaymentRequest($data = null) |
|
113 | 113 | { |
114 | - if ( $data == null ) { |
|
114 | + if ($data == null) { |
|
115 | 115 | $quantity = intval(request()->quantity); |
116 | 116 | $data = [ |
117 | - "amount" => intval(request()->amount)*$quantity, |
|
117 | + "amount" => intval(request()->amount) * $quantity, |
|
118 | 118 | "reference" => request()->reference, |
119 | 119 | "email" => request()->email, |
120 | 120 | "plan" => request()->plan, |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | } |
162 | 162 | |
163 | 163 | $this->response = $this->client->{strtolower($method)}( |
164 | - $this->baseUrl . $relativeUrl, |
|
164 | + $this->baseUrl.$relativeUrl, |
|
165 | 165 | ["body" => json_encode($body)] |
166 | 166 | ); |
167 | 167 | |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | |
206 | 206 | $relativeUrl = "/transaction/verify/{$transactionRef}"; |
207 | 207 | |
208 | - $this->response = $this->client->get($this->baseUrl . $relativeUrl, []); |
|
208 | + $this->response = $this->client->get($this->baseUrl.$relativeUrl, []); |
|
209 | 209 | } |
210 | 210 | |
211 | 211 | /** |
@@ -353,7 +353,7 @@ discard block |
||
353 | 353 | public function fetchPlan($plan_code) |
354 | 354 | { |
355 | 355 | $this->setRequestOptions(); |
356 | - return $this->setHttpResponse('/plan/' . $plan_code, 'GET', [])->getResponse(); |
|
356 | + return $this->setHttpResponse('/plan/'.$plan_code, 'GET', [])->getResponse(); |
|
357 | 357 | } |
358 | 358 | |
359 | 359 | /** |
@@ -374,7 +374,7 @@ discard block |
||
374 | 374 | ]; |
375 | 375 | |
376 | 376 | $this->setRequestOptions(); |
377 | - return $this->setHttpResponse('/plan/' . $plan_code, 'PUT', $data)->getResponse(); |
|
377 | + return $this->setHttpResponse('/plan/'.$plan_code, 'PUT', $data)->getResponse(); |
|
378 | 378 | } |
379 | 379 | |
380 | 380 | /** |
@@ -403,7 +403,7 @@ discard block |
||
403 | 403 | public function fetchCustomer($customer_id) |
404 | 404 | { |
405 | 405 | $this->setRequestOptions(); |
406 | - return $this->setHttpResponse('/customer/'. $customer_id, 'GET', [])->getResponse(); |
|
406 | + return $this->setHttpResponse('/customer/'.$customer_id, 'GET', [])->getResponse(); |
|
407 | 407 | } |
408 | 408 | |
409 | 409 | /** |
@@ -423,7 +423,7 @@ discard block |
||
423 | 423 | ]; |
424 | 424 | |
425 | 425 | $this->setRequestOptions(); |
426 | - return $this->setHttpResponse('/customer/'. $customer_id, 'PUT', $data)->getResponse(); |
|
426 | + return $this->setHttpResponse('/customer/'.$customer_id, 'PUT', $data)->getResponse(); |
|
427 | 427 | } |
428 | 428 | |
429 | 429 | /** |
@@ -479,7 +479,7 @@ discard block |
||
479 | 479 | { |
480 | 480 | $this->setRequestOptions(); |
481 | 481 | |
482 | - return $this->setHttpResponse('/subscription?customer=' . $customer_id, 'GET', [])->getData(); |
|
482 | + return $this->setHttpResponse('/subscription?customer='.$customer_id, 'GET', [])->getData(); |
|
483 | 483 | } |
484 | 484 | |
485 | 485 | /** |
@@ -492,7 +492,7 @@ discard block |
||
492 | 492 | { |
493 | 493 | $this->setRequestOptions(); |
494 | 494 | |
495 | - return $this->setHttpResponse('/subscription?plan=' . $plan_id, 'GET', [])->getData(); |
|
495 | + return $this->setHttpResponse('/subscription?plan='.$plan_id, 'GET', [])->getData(); |
|
496 | 496 | } |
497 | 497 | |
498 | 498 | /** |
@@ -595,7 +595,7 @@ discard block |
||
595 | 595 | * @return array |
596 | 596 | */ |
597 | 597 | |
598 | - public function createSubAccount(){ |
|
598 | + public function createSubAccount() { |
|
599 | 599 | $data = [ |
600 | 600 | "business_name" => request()->business_name, |
601 | 601 | "settlement_bank" => request()->settlement_bank, |
@@ -618,10 +618,10 @@ discard block |
||
618 | 618 | * @param subaccount code |
619 | 619 | * @return array |
620 | 620 | */ |
621 | - public function fetchSubAccount($subaccount_code){ |
|
621 | + public function fetchSubAccount($subaccount_code) { |
|
622 | 622 | |
623 | 623 | $this->setRequestOptions(); |
624 | - return $this->setHttpResponse("/subaccount/{$subaccount_code}","GET",[])->getResponse(); |
|
624 | + return $this->setHttpResponse("/subaccount/{$subaccount_code}", "GET", [])->getResponse(); |
|
625 | 625 | |
626 | 626 | } |
627 | 627 | |
@@ -630,10 +630,10 @@ discard block |
||
630 | 630 | * @param $per_page - Specifies how many records to retrieve per page , $page - SPecifies exactly what page to retrieve |
631 | 631 | * @return array |
632 | 632 | */ |
633 | - public function listSubAccounts($per_page,$page){ |
|
633 | + public function listSubAccounts($per_page, $page) { |
|
634 | 634 | |
635 | 635 | $this->setRequestOptions(); |
636 | - return $this->setHttpResponse("/subaccount/?perPage=".(int) $per_page."&page=".(int) $page,"GET")->getResponse(); |
|
636 | + return $this->setHttpResponse("/subaccount/?perPage=".(int) $per_page."&page=".(int) $page, "GET")->getResponse(); |
|
637 | 637 | |
638 | 638 | } |
639 | 639 | |
@@ -644,7 +644,7 @@ discard block |
||
644 | 644 | * @return array |
645 | 645 | */ |
646 | 646 | |
647 | - public function updateSubAccount($subaccount_code){ |
|
647 | + public function updateSubAccount($subaccount_code) { |
|
648 | 648 | $data = [ |
649 | 649 | "business_name" => request()->business_name, |
650 | 650 | "settlement_bank" => request()->settlement_bank, |