Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Martijn Wagena committed Nov 26, 2024
2 parents 7917a4f + fdd30e5 commit 5efcdab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Actions/DeeplBulkTranslatableAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Concept7\FilamentDeeplTranslations\Actions;

use App\Filament\Components\Select;
use Concept7\FilamentDeeplTranslations\Jobs\BatchTranslateJob;
use Filament\Actions\Concerns\CanCustomizeProcess;
use Filament\Forms\Components\Select;
use Filament\Support\Facades\FilamentIcon;
use Filament\Tables\Actions\BulkAction;
use Illuminate\Database\Eloquent\Collection;
Expand Down
1 change: 1 addition & 0 deletions src/Actions/DeeplTranslatableAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public static function make(): void
->mapWithKeys(fn (string $lang) => [$lang => $lang])
->map(fn (string $lang) => locale_get_display_name($lang, config('app.locale')));

/** @var \Filament\Forms\Components\Field $this */
return $this->hintAction(

Check failure on line 23 in src/Actions/DeeplTranslatableAction.php

View workflow job for this annotation

GitHub Actions / phpstan

Undefined variable: $this

Check failure on line 23 in src/Actions/DeeplTranslatableAction.php

View workflow job for this annotation

GitHub Actions / phpstan

Variable $this in PHPDoc tag @var does not exist.

Check failure on line 23 in src/Actions/DeeplTranslatableAction.php

View workflow job for this annotation

GitHub Actions / phpstan

Undefined variable: $this

Check failure on line 23 in src/Actions/DeeplTranslatableAction.php

View workflow job for this annotation

GitHub Actions / phpstan

Variable $this in PHPDoc tag @var does not exist.
function (Field $component, $livewire) use ($langs) {
$fieldName = $component->getName();
Expand Down

0 comments on commit 5efcdab

Please sign in to comment.