public function GetSmtpDetails::__construct in SendinBlue 8
Same name and namespace in other branches
- 8.2 src/Tools/Model/GetSmtpDetails.php \Drupal\sendinblue\Tools\Model\GetSmtpDetails::__construct()
GetSmtpDetails constructor.
Parameters
string $userName:
string $relay:
int $port:
bool $enabled:
File
- src/
Tools/ Model/ GetSmtpDetails.php, line 31
Class
Namespace
Drupal\sendinblue\Tools\ModelCode
public function __construct(string $userName, string $relay, int $port, bool $enabled) {
$this->userName = $userName;
$this->relay = $relay;
$this->port = $port;
$this->enabled = $enabled;
}