/** * @inheritDoc */ public function handle(NotificationInterface $notification) { $this->getClient()->sendSms($notification->getRecipientNumber(), $notification->getMessage()); return true; }
/** * {@inheritdoc} */ public function handle(NotificationInterface $notification) { /* @var TwilioNotification $notification */ $this->twilio->account->messages->sendMessage($this->twilioNumber, $notification->getRecipientNumber(), $notification->getMessage()); }