We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f6b96a commit 389b9b5Copy full SHA for 389b9b5
src/Query/Query.php
@@ -82,7 +82,7 @@ public function resolve(array|object $data = []): mixed
82
$mode = App::instance()->option('query.runner', 'legacy');
83
84
if ($mode === 'legacy') {
85
- return $this->resolve_legacy($data);
+ return $this->resolveLegacy($data);
86
}
87
// @codeCoverageIgnoreEnd
88
@@ -95,7 +95,7 @@ public function resolve(array|object $data = []): mixed
95
* @deprecated 6.0.0
96
* @codeCoverageIgnore
97
*/
98
- private function resolve_legacy(array|object $data = []): mixed
+ private function resolveLegacy(array|object $data = []): mixed
99
{
100
// merge data with default entries
101
if (is_array($data) === true) {
0 commit comments