Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
roncodes committed Aug 15, 2024
1 parent 10e8f38 commit 056c7a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function from(string $connection): TwilioInterface
throw new InvalidArgumentException("Connection \"{$connection}\" is not configured.");
}

$settings = $this->settings[$connection] ?? ['sid' => '', 'token' => '', 'from' => ''];
$settings = $this->settings[$connection];

return new Twilio($settings['sid'], $settings['token'], $settings['from']);
}
Expand Down

0 comments on commit 056c7a8

Please sign in to comment.