Skip to content

Commit 970f491

Browse files
authored
Core: Ignore error in case of call magic method.
1 parent 4996f22 commit 970f491

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Core/Core.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ public function processCandidateSearch(string $query, string $entity, array $col
7474
if (in_array($getter, $magicGetters, true)) {
7575
try {
7676
// Get data from magic getter
77+
/** @phpstan-ignore-next-line */
7778
$columnDatabaseValue = $candidateResult->$getter();
7879
} catch (\Throwable) {
7980
// Silence is golden.

0 commit comments

Comments
 (0)