Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
Saifallak committed Jul 25, 2024
2 parents e5ef16f + 361f12f commit ba2dfea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Channels/CloudWaChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function send(mixed $notifiable, Notification $notification): void

$message = $notification->toCloudWa($notifiable);

(new Cloudwa())
(new Cloudwa)
->session($message['uuid'] ?? $message['session_uuid'] ?? null)
->file($message['image'] ?? $message['file'] ?? null)
->phone($message['phones'] ?? $message['phone'] ?? null)
Expand Down
2 changes: 1 addition & 1 deletion src/Channels/CloudWaOTPChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function send(mixed $notifiable, Notification $notification): void

$message = $notification->toCloudWa($notifiable);

(new Cloudwa())
(new Cloudwa)
->session($message['uuid'] ?? $message['session_uuid'] ?? null)
->file($message['image'] ?? $message['file'] ?? null)
->phone($message['phones'] ?? $message['phone'] ?? null)
Expand Down

0 comments on commit ba2dfea

Please sign in to comment.