1
0
Fork 0
mirror of synced 2024-09-30 17:26:48 +13:00

chore: update var_dump

This commit is contained in:
Christy Jacob 2024-01-29 15:56:07 +00:00
parent 537bbdf419
commit a3b33ab746

View file

@ -53,6 +53,8 @@ class Messaging extends Action
*/
public function action(Message $message): void
{
var_dump($message);
$payload = $message->getPayload() ?? [];
if (empty($payload)) {
@ -70,8 +72,6 @@ class Messaging extends Action
return;
}
var_dump($payload['project']);
$sms = match ($this->dsn->getHost()) {
'mock' => new Mock($this->user, $this->secret), // used for tests
'twilio' => new Twilio($this->user, $this->secret),