Passed
Push — master ( 76a91a...8d95ff )
by Mujeeb
02:51
created
src/SendChamp.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 
16 16
     /**
17 17
      * @var array 
18
-    */
18
+     */
19 19
 
20 20
     private $useCase = ['Transactional', 'Marketing', 'Transactional & Marketing'];
21 21
 
@@ -39,14 +39,14 @@  discard block
 block discarded – undo
39 39
 
40 40
     /**
41 41
      * @var string
42
-    */
42
+     */
43 43
 
44 44
     protected $publicKey;
45 45
 
46 46
 
47 47
     /**
48 48
      * @var string
49
-    */
49
+     */
50 50
 
51 51
     protected $client;
52 52
 
@@ -54,14 +54,14 @@  discard block
 block discarded – undo
54 54
     /**
55 55
      * Response from sendchamp api
56 56
      * @var mixed
57
-    */
57
+     */
58 58
 
59 59
 
60 60
     protected $response;
61 61
 
62 62
     /**
63 63
      * @var string
64
-    */
64
+     */
65 65
 
66 66
 
67 67
     protected $baseUrl;
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 
77 77
     /**
78 78
      * Get base url from sendchamp config
79
-    */
79
+     */
80 80
 
81 81
     public function getBaseUrl()
82 82
     {
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
     /**
88 88
      * Get public key from sendchamp cofig
89
-    */
89
+     */
90 90
 
91 91
     public function getKey()
92 92
     {
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
     /**
98 98
      * Set request options 
99 99
      * @return SendChamp
100
-    */
100
+     */
101 101
 
102 102
     private function setRequestOptions()
103 103
     {
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
      * @param string $method
125 125
      * @param array $data
126 126
      * @return SendChamp
127
-    */
127
+     */
128 128
 
129 129
 
130 130
     private function setHttpResponse($url, $method = null, $body = [])
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
     /**
146 146
      * Decode json response into an array
147 147
      * @return array
148
-    */
148
+     */
149 149
 
150 150
 
151 151
     private function getResponse()
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
      * You should pass either of the following: Transactional, Marketing, or Transactional & Marketing
162 162
      * @param string $sample_message
163 163
      * @return array
164
-    */
164
+     */
165 165
 
166 166
     public function createSmsSender(string $sender_name, string $use_case,
167 167
         string $sample_message){
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
      * (Example: [ '234somenumber', '234anothenumber' ]).
199 199
      * @param string $route e.g ['non_dnd', 'dnd', 'international'] 
200 200
      * @return array
201
-    */
201
+     */
202 202
 
203 203
     public function sendSms(string $message, string $sender_name, array $numbers, string $route = ""){
204 204
 
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
      * @param string $sms_id 
226 226
      * ID of the SMS that was sent
227 227
      * @return array
228
-    */
228
+     */
229 229
 
230 230
     public function fetchSmsStatus(string $sms_id){
231 231
 
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
      * The number represents the destination phone number.
245 245
      * The number must be in international format (E.g. 2348012345678)
246 246
      * @return array
247
-    */
247
+     */
248 248
 
249 249
 
250 250
     public function sendVoice(string $message, string $sender_name, string $number){
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
      * Whatsapp number of the customer you are sending the message to
273 273
      * @param string $message
274 274
      * @return array
275
-    */
275
+     */
276 276
 
277 277
 
278 278
     public function sendWhatsappOtp(string $template_code, string $message,
@@ -307,10 +307,10 @@  discard block
 block discarded – undo
307 307
      * when using SMS OR Whatsapp Channel or we will select a
308 308
      * default sender from your account. Eg: KUDA OR +234810000000
309 309
      * @return array
310
-    */
310
+     */
311 311
 
312 312
     public function sendOtp(string $channel, string $token_type, int $token_length,
313
-       int $expiry_day, string $customer_email, string $customer_mobile_number, array $meta_data, string $sender){
313
+        int $expiry_day, string $customer_email, string $customer_mobile_number, array $meta_data, string $sender){
314 314
 
315 315
         if(!in_array($token_type, $this->tokenType)){
316 316
 
@@ -348,7 +348,7 @@  discard block
 block discarded – undo
348 348
      * @param string $otp
349 349
      * The OTP that was sent to the customer.
350 350
      * @return array
351
-    */
351
+     */
352 352
 
353 353
 
354 354
     public function confirmOtp(string $reference, string $otp){
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
     /**
367 367
      * Get contacts list
368 368
      * @return array
369
-    */
369
+     */
370 370
 
371 371
     public function getContactList(){
372 372
         
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
      * @param string $email
384 384
      * @param string $reference 
385 385
      * @return array
386
-    */
386
+     */
387 387
 
388 388
     public function createOrUpdateContact(string $lastname, string $firstname, string $phone, string $email, string $reference){
389 389
 
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
      * Delete contact
407 407
      * @param string $id 
408 408
      * @return array
409
-    */
409
+     */
410 410
 
411 411
     public function deleteContact(string $id){
412 412
 
@@ -421,7 +421,7 @@  discard block
 block discarded – undo
421 421
      * Get wallet report
422 422
      *
423 423
      * @return array
424
-    */
424
+     */
425 425
 
426 426
     public function getWalletReport(){
427 427
         
Please login to merge, or discard this patch.