Passed
Push — main ( e80945...cbda9c )
by Hope
02:19
created
src/ConfirmidentServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
             __DIR__.'/../config/confirmident.php', 'confirmident'
20 20
         );
21 21
 
22
-        $this->app->singleton('confirmident', function () {
22
+        $this->app->singleton('confirmident', function() {
23 23
             return new Confirmident();
24 24
         });
25 25
     }
Please login to merge, or discard this patch.
src/Helpers/Bvn.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -27,11 +27,11 @@
 block discarded – undo
27 27
     }
28 28
 
29 29
         /**
30
-     * BVN Verification
31
-     *
32
-     * @param string $bvn
33
-     * @return array|null
34
-     */
30
+         * BVN Verification
31
+         *
32
+         * @param string $bvn
33
+         * @return array|null
34
+         */
35 35
     public function verification(string $bvn): ?array
36 36
     {
37 37
         $response = Http::withHeaders([
Please login to merge, or discard this patch.
src/Helpers/Nin.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -41,12 +41,12 @@
 block discarded – undo
41 41
         return $response->json();
42 42
     }
43 43
 
44
-     /**
45
-     * Search by Phone Number
46
-     *
47
-     * @param string $phone
48
-     * @return array|null
49
-     */
44
+        /**
45
+         * Search by Phone Number
46
+         *
47
+         * @param string $phone
48
+         * @return array|null
49
+         */
50 50
     public function searchByPhoneNumber(string $phone): ?array
51 51
     {
52 52
         $response = Http::withHeaders([
Please login to merge, or discard this patch.