Test Failed
Push — master ( 7a964a...84a65d )
by Olayemi
03:42 queued 12s
created
src/Helpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (! function_exists('paystack')) {
3
+if (!function_exists('paystack')) {
4 4
     /**
5 5
      * @throws \Illuminate\Contracts\Container\BindingResolutionException
6 6
      */
Please login to merge, or discard this patch.
src/PaystackServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
     {
14 14
         if ($this->app->runningInConsole()) {
15 15
             $this->publishes([
16
-                __DIR__.'/../config/config.php' => config_path('paystack.php'),
16
+                __DIR__ . '/../config/config.php' => config_path('paystack.php'),
17 17
             ], 'config');
18 18
         }
19 19
     }
@@ -24,10 +24,10 @@  discard block
 block discarded – undo
24 24
     public function register(): void
25 25
     {
26 26
         // Automatically apply the package configuration
27
-        $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'paystack');
27
+        $this->mergeConfigFrom(__DIR__ . '/../config/config.php', 'paystack');
28 28
 
29 29
         // Register the main class to use with the facade
30
-        $this->app->bind('paystack', function () {
30
+        $this->app->bind('paystack', function() {
31 31
             return new Paystack(config('paystack.secret_key'));
32 32
         });
33 33
     }
Please login to merge, or discard this patch.