Closed mbabker closed 1 year ago
Fixes #238 by wrapping calls to the deprecated Connection::query() with a method_exists() check to instead call Connection::executeQuery() when the preferred API is available.
Connection::query()
method_exists()
Connection::executeQuery()
CI fails are unrelated to this PR.
Thanks!
Fixes #238 by wrapping calls to the deprecated
Connection::query()
with amethod_exists()
check to instead callConnection::executeQuery()
when the preferred API is available.