Completed
Pull Request — master (#23)
by
unknown
05:17
created
src/PaystackServiceProvider.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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'];
Please login to merge, or discard this patch.
src/Paystack.php 1 patch
Indentation   +22 added lines, -23 removed lines patch added patch discarded remove patch
@@ -102,12 +102,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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);
@@ -590,10 +589,10 @@  discard block
 block discarded – undo
590 589
     }
591 590
 
592 591
      /**
593
-     * Creates a subaccount to be used for split payments . Required    params are business_name , settlement_bank , account_number ,   percentage_charge
594
-     * 
595
-     * @return array
596
-     */
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
+      */
597 596
     
598 597
     public function createSubAccount(){
599 598
         $data = [
@@ -615,10 +614,10 @@  discard block
 block discarded – undo
615 614
     }
616 615
 
617 616
      /**
618
-     * Fetches details of a subaccount
619
-     * @param subaccount code
620
-     * @return array
621
-     */
617
+      * Fetches details of a subaccount
618
+      * @param subaccount code
619
+      * @return array
620
+      */
622 621
     public function fetchSubAccount($subaccount_code){
623 622
 
624 623
         $this->setRequestOptions();
@@ -627,10 +626,10 @@  discard block
 block discarded – undo
627 626
     }
628 627
 
629 628
      /**
630
-     * Lists all the subaccounts associated with the account
631
-     * @param $per_page - Specifies how many records to retrieve per page , $page - SPecifies exactly what page to retrieve
632
-     * @return array
633
-     */
629
+      * Lists all the subaccounts associated with the account
630
+      * @param $per_page - Specifies how many records to retrieve per page , $page - SPecifies exactly what page to retrieve
631
+      * @return array
632
+      */
634 633
     public function listSubAccounts($per_page,$page){
635 634
 
636 635
         
Please login to merge, or discard this patch.