Skip to content

Commit

Permalink
Ignore return type
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeWithDennis committed Sep 5, 2024
1 parent 6f46fea commit ea8acee
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/Filament/Resources/UserResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@ public static function getGloballySearchableAttributes(): array

public static function getGlobalSearchResultDetails(Model $record): array
{
return [
$record->email,
];
/** @phpstan-ignore return.type */
return [$record->email];
}

public static function form(Form $form): Form
Expand Down

0 comments on commit ea8acee

Please sign in to comment.