Skip to content

Commit

Permalink
Add phpstan ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
flowan committed Feb 2, 2024
1 parent 28e971a commit 49d5178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Filament/Resources/TokenResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static function form(Form $form): Form
->schema([
Forms\Components\Select::make('tokenable')
->label('User')
->options(User::all()->pluck('name', 'id'))
->options(User::all()->pluck('name', 'id')) /** @phpstan-ignore-line */
->searchable()
->required(),
Forms\Components\TextInput::make('name')
Expand Down

0 comments on commit 49d5178

Please sign in to comment.