1
0
Fork 0
mirror of synced 2024-07-03 21:50:34 +12:00

chore: fmt

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

View file

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