File tree 6 files changed +17
-1
lines changed
6 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 17
17
*
18
18
* NOTE: This class is required prior to Autoloader instantiation,
19
19
* and does not extend BaseConfig.
20
+ *
21
+ * @immutable
20
22
*/
21
23
class Autoload extends AutoloadConfig
22
24
{
Original file line number Diff line number Diff line change 2
2
3
3
namespace Config ;
4
4
5
+ /**
6
+ * @immutable
7
+ */
5
8
class DocTypes
6
9
{
7
10
/**
Original file line number Diff line number Diff line change @@ -56,7 +56,11 @@ class Email extends BaseConfig
56
56
public bool $ SMTPKeepAlive = false ;
57
57
58
58
/**
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 ''.
60
64
*/
61
65
public string $ SMTPCrypto = 'tls ' ;
62
66
Original file line number Diff line number Diff line change 4
4
5
5
use CodeIgniter \Config \ForeignCharacters as BaseForeignCharacters ;
6
6
7
+ /**
8
+ * @immutable
9
+ */
7
10
class ForeignCharacters extends BaseForeignCharacters
8
11
{
9
12
}
Original file line number Diff line number Diff line change 15
15
*
16
16
* When working with mime types, please make sure you have the ´fileinfo´
17
17
* extension enabled to reliably detect the media types.
18
+ *
19
+ * @immutable
18
20
*/
19
21
class Mimes
20
22
{
Original file line number Diff line number Diff line change 9
9
*
10
10
* NOTE: This class is required prior to Autoloader instantiation,
11
11
* and does not extend BaseConfig.
12
+ *
13
+ * @immutable
12
14
*/
13
15
class Modules extends BaseModules
14
16
{
You can’t perform that action at this time.
0 commit comments