Skip to content

Commit 389b9b5

Browse files
authored
resolve_legacy > resolveLegacy
1 parent 8f6b96a commit 389b9b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Query/Query.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public function resolve(array|object $data = []): mixed
8282
$mode = App::instance()->option('query.runner', 'legacy');
8383

8484
if ($mode === 'legacy') {
85-
return $this->resolve_legacy($data);
85+
return $this->resolveLegacy($data);
8686
}
8787
// @codeCoverageIgnoreEnd
8888

@@ -95,7 +95,7 @@ public function resolve(array|object $data = []): mixed
9595
* @deprecated 6.0.0
9696
* @codeCoverageIgnore
9797
*/
98-
private function resolve_legacy(array|object $data = []): mixed
98+
private function resolveLegacy(array|object $data = []): mixed
9999
{
100100
// merge data with default entries
101101
if (is_array($data) === true) {

0 commit comments

Comments
 (0)