chore: fmt

This commit is contained in:
loks0n 2024-02-21 16:27:37 +00:00
parent e3c261b9e4
commit b2e1c162d2

View file

@ -92,10 +92,10 @@ class Messaging extends Action
switch ($this->dsn->getHost()) { switch ($this->dsn->getHost()) {
case 'mock': case 'mock':
$sms = new Mock($this->user, $this->secret); // used for tests $sms = new Mock($this->user, $this->secret); // used for tests
break; break;
case 'twilio': case 'twilio':
$sms = new Twilio($this->user, $this->secret); $sms = new Twilio($this->user, $this->secret);
break; break;
case 'text-magic': case 'text-magic':
$sms = new TextMagic($this->user, $this->secret); $sms = new TextMagic($this->user, $this->secret);
break; break;