Test Failed
Push — master ( 64edb8...917928 )
by Olayemi
25:02 queued 18:59
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
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     {
15 15
         if ($this->app->runningInConsole()) {
16 16
             $this->publishes([
17
-                __DIR__.'/../config/config.php' => config_path('paystack.php'),
17
+                __DIR__ . '/../config/config.php' => config_path('paystack.php'),
18 18
             ], 'config');
19 19
         }
20 20
     }
@@ -25,10 +25,10 @@  discard block
 block discarded – undo
25 25
     public function register(): void
26 26
     {
27 27
         // Automatically apply the package configuration
28
-        $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'paystack');
28
+        $this->mergeConfigFrom(__DIR__ . '/../config/config.php', 'paystack');
29 29
 
30 30
         // Register the main class to use with the facade
31
-        $this->app->singleton('paystack', function () {
31
+        $this->app->singleton('paystack', function() {
32 32
             return new Paystack(config('paystack.secret_key'));
33 33
         });
34 34
     }
Please login to merge, or discard this patch.