Skip to content

Commit

Permalink
Add phpstan ignore annotation for method not found
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeWithDennis committed Sep 5, 2024
1 parent dbb8ac4 commit 6fb3e1c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ public function boot(): void
foreach ([Field::class, BaseFilter::class, Placeholder::class, Column::class, Entry::class] as $component) {
/* @var Configurable $component */
$component::configureUsing(function (Component $translatable): void {
/** @phpstan-ignore method.notFound */
$translatable->translateLabel();
});
}
Expand Down

0 comments on commit 6fb3e1c

Please sign in to comment.