Skip to content

Commit c5fee43

Browse files
committed
docs: fix doc comments
1 parent f7e6cff commit c5fee43

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

app/Config/Email.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,11 @@ class Email extends BaseConfig
5656
public bool $SMTPKeepAlive = false;
5757

5858
/**
59-
* SMTP Encryption. Either tls or ssl
59+
* SMTP Encryption.
60+
*
61+
* @var string '', 'tls' or 'ssl'. 'tls' will issue a STARTTLS command
62+
* to the server. 'ssl' means implicit SSL. Connection on port
63+
* 465 should set this to ''.
6064
*/
6165
public string $SMTPCrypto = 'tls';
6266

system/Email/Email.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,9 @@ class Email
113113
/**
114114
* SMTP Encryption
115115
*
116-
* @var string Empty, 'tls' or 'ssl'
116+
* @var string '', 'tls' or 'ssl'. 'tls' will issue a STARTTLS command
117+
* to the server. 'ssl' means implicit SSL. Connection on port
118+
* 465 should set this to ''.
117119
*/
118120
public $SMTPCrypto = '';
119121

0 commit comments

Comments
 (0)