Test Setup Failed
Push — main ( fc5a44...e9fc11 )
by امید
06:03 queued 03:36
created
src/config/parsianRefund.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,6 +6,6 @@
 block discarded – undo
6 6
     'apiRefundUrl'     => 'https://refundservices.pec.ir/api/Refund/',
7 7
     'withoutVerifying' => 'false',
8 8
     'certificate'      => '',
9
-    'certificateType'  => 'xml_file',// can be: xml_file, xml_string
9
+    'certificateType'  => 'xml_file', // can be: xml_file, xml_string
10 10
     'callbackUrl'      => 'http://yoursite.com/path/to',
11 11
 ];
Please login to merge, or discard this patch.
src/ParsianRefund.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
      */
75 75
     public static function getDefaultConfigPath() : string
76 76
     {
77
-        return __DIR__.'/config/parsianRefund.php';
77
+        return __DIR__ . '/config/parsianRefund.php';
78 78
     }
79 79
 
80 80
     /**
Please login to merge, or discard this patch.
src/Providers/ParsianRefundProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
         /**
27 27
          * Bind to service container.
28 28
          */
29
-        $this->app->bind('parsian-refund', function () {
29
+        $this->app->bind('parsian-refund', function() {
30 30
             $config = config('parsianRefund') ?? [];
31 31
             return new ParsianRefund($config);
32 32
         });
Please login to merge, or discard this patch.