Skip to content

Commit 8bdf75b

Browse files
committed
Fix CS
1 parent bca9ccd commit 8bdf75b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Services/MeilisearchService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ private static function resolveClass(object $object): string
377377
$resolver ??= (function () {
378378
// Native lazy objects compatibility
379379
if (PHP_VERSION_ID >= 80400 && class_exists(LegacyReflectionFields::class)) {
380-
return fn (object $object) => get_class($object);
380+
return fn (object $object) => \get_class($object);
381381
}
382382

383383
// Doctrine ORM v3+ compatibility

0 commit comments

Comments
 (0)