code-style

This commit is contained in:
Saeed Vaziry
2025-03-13 20:53:14 +01:00
parent 0f06d81aac
commit 48ae561ea4
43 changed files with 122 additions and 76 deletions

View File

@ -8,6 +8,7 @@
use App\Models\Command;
use App\Models\CommandExecution;
use App\Models\Site;
use App\Models\User;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Get;
use Filament\Notifications\Notification;
@ -69,7 +70,7 @@ protected function getTableColumns(): array
protected function getTableHeaderActions(): array
{
/** @var \App\Models\User */
/** @var User $user */
$user = auth()->user();
return [
@ -107,7 +108,7 @@ protected function getTableHeaderActions(): array
public function table(Table $table): Table
{
/** @var \App\Models\User */
/** @var User $user */
$user = auth()->user();
return $table

View File

@ -4,6 +4,7 @@
use App\Models\Deployment;
use App\Models\Site;
use App\Models\User;
use Filament\Tables\Actions\Action;
use Filament\Tables\Columns\TextColumn;
use Filament\Tables\Table;
@ -63,7 +64,7 @@ protected function getTableColumns(): array
public function table(Table $table): Table
{
/** @var \App\Models\User */
/** @var User $user */
$user = auth()->user();
return $table

View File

@ -4,6 +4,7 @@
use App\Models\Server;
use App\Models\Site;
use App\Models\User;
use App\Web\Pages\Servers\Sites\Settings;
use App\Web\Pages\Servers\Sites\View;
use Filament\Tables\Actions\Action;
@ -57,7 +58,7 @@ protected function getTableColumns(): array
public function table(Table $table): Table
{
/** @var \App\Models\User */
/** @var User $user */
$user = auth()->user();
return $table