File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
user_guide_src/source/installation Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ Additional related deprecations from the HTTP layer:
39
39
40
40
* ``Message::isJSON() ``: Check the "Content-Type" header directly
41
41
* ``Request[Interface]::isValidIP() ``: Use the Validation class with ``valid_ip ``
42
- * ``Request[Interface]::getMethod() ``: The ``$upper `` parameter will be removed, use str_to_upper ()
42
+ * ``Request[Interface]::getMethod() ``: The ``$upper `` parameter will be removed, use strtoupper ()
43
43
* ``Request[Trait]::$ipAddress ``: This property will become private
44
44
* ``Request::$proxyIPs ``: This property will be removed; access ``config('App')->proxyIPs `` directly
45
45
* ``Request::__construct() ``: The constructor will no longer take ``Config\App `` and has been made nullable to aid transition
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ BaseConnection::query() Return Values
46
46
``BaseConnection::query() `` method in prior versions was incorrectly returning BaseResult objects
47
47
even if the query failed. This method will now return ``false `` for failed queries (or throw an
48
48
Exception if ``DBDebug `` is ``true ``) and will return booleans for write-type queries. Review any use
49
- of ``query() `` method and be assess whether the value might be boolean instead of Result object.
49
+ of ``query() `` method and assess whether the value might be boolean instead of Result object.
50
50
For a better idea of what queries are write-type queries, check ``BaseConnection::isWriteType() ``
51
51
and any DBMS-specific override ``isWriteType() `` in the relevant Connection class.
52
52
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ and it is recommended that you merge the updated versions with your application:
66
66
Config
67
67
------
68
68
69
- - app/Config/Encryption .php
69
+ - app/Config/Email .php
70
70
- Set the default value ``'' `` to ``$fromEmail ``, ``$fromName ``,
71
71
``$recipients ``, ``$SMTPHost ``, ``$SMTPUser `` and ``$SMTPPass ``
72
72
to apply environment variable (**.env **) values.
You can’t perform that action at this time.
0 commit comments