@@ -19,7 +19,7 @@ |
||
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 | } |
@@ -27,11 +27,11 @@ |
||
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([ |
@@ -41,12 +41,12 @@ |
||
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([ |