Skip to content

Commit 9f8535e

Browse files
committed
Release v4.4.1
1 parent 81e89ce commit 9f8535e

File tree

6 files changed

+17
-1
lines changed

6 files changed

+17
-1
lines changed

app/Config/Autoload.php

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
*
1818
* NOTE: This class is required prior to Autoloader instantiation,
1919
* and does not extend BaseConfig.
20+
*
21+
* @immutable
2022
*/
2123
class Autoload extends AutoloadConfig
2224
{

app/Config/DocTypes.php

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
namespace Config;
44

5+
/**
6+
* @immutable
7+
*/
58
class DocTypes
69
{
710
/**

app/Config/Email.php

+5-1
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

app/Config/ForeignCharacters.php

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
use CodeIgniter\Config\ForeignCharacters as BaseForeignCharacters;
66

7+
/**
8+
* @immutable
9+
*/
710
class ForeignCharacters extends BaseForeignCharacters
811
{
912
}

app/Config/Mimes.php

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
*
1616
* When working with mime types, please make sure you have the ´fileinfo´
1717
* extension enabled to reliably detect the media types.
18+
*
19+
* @immutable
1820
*/
1921
class Mimes
2022
{

app/Config/Modules.php

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
*
1010
* NOTE: This class is required prior to Autoloader instantiation,
1111
* and does not extend BaseConfig.
12+
*
13+
* @immutable
1214
*/
1315
class Modules extends BaseModules
1416
{

0 commit comments

Comments
 (0)