Skip to content

Commit 8fd9a02

Browse files
committed
Fix CS
1 parent bca9ccd commit 8fd9a02

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
- trying
99
- staging
1010
- main
11+
schedule:
12+
- cron: '0 3 * * 1'
1113

1214
env:
1315
fail-fast: true

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)