File tree Expand file tree Collapse file tree 6 files changed +30
-3
lines changed Expand file tree Collapse file tree 6 files changed +30
-3
lines changed Original file line number Diff line number Diff line change 1313 * can find the files as needed.
1414 *
1515 * NOTE: If you use an identical key in $psr4 or $classmap, then
16- * the values in this file will overwrite the framework's values.
16+ * the values in this file will overwrite the framework's values.
17+ *
18+ * NOTE: This class is required prior to Autoloader instantiation,
19+ * and does not extend BaseConfig.
20+ *
21+ * @immutable
1722 */
1823class Autoload extends AutoloadConfig
1924{
Original file line number Diff line number Diff line change 22
33namespace Config ;
44
5+ /**
6+ * @immutable
7+ */
58class DocTypes
69{
710 /**
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 22
33namespace Config ;
44
5- class ForeignCharacters extends \CodeIgniter \Config \ForeignCharacters
5+ use CodeIgniter \Config \ForeignCharacters as BaseForeignCharacters ;
6+
7+ /**
8+ * @immutable
9+ */
10+ class ForeignCharacters extends BaseForeignCharacters
611{
712}
Original file line number Diff line number Diff line change 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 */
1921class Mimes
2022{
Original file line number Diff line number Diff line change 44
55use CodeIgniter \Modules \Modules as BaseModules ;
66
7+ /**
8+ * Modules Configuration.
9+ *
10+ * NOTE: This class is required prior to Autoloader instantiation,
11+ * and does not extend BaseConfig.
12+ *
13+ * @immutable
14+ */
715class Modules extends BaseModules
816{
917 /**
You can’t perform that action at this time.
0 commit comments