You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ReconnectStrategy:113 adds ['connection' => $this->connection->configName()] as a context to getDriver()->log(). The Driver will then pass this on to $loggedQuery->setContext(). The later will blindly write each context key to a property, but LoggedQuery has no connection property. This then leads to the warning
Creation of dynamic property Cake\Database\Log\LoggedQuery::$connection is deprecated
CakePHP Version
5.2.4
PHP Version
8.4
The text was updated successfully, but these errors were encountered:
Description
The
ReconnectStrategy:113
adds['connection' => $this->connection->configName()]
as a context togetDriver()->log()
. The Driver will then pass this on to$loggedQuery->setContext()
. The later will blindly write each context key to a property, butLoggedQuery
has noconnection
property. This then leads to the warningCakePHP Version
5.2.4
PHP Version
8.4
The text was updated successfully, but these errors were encountered: