Skip to content

Commit bd6c007

Browse files
shuvroroygithub-actions[bot]
authored andcommitted
chore: fix styling
1 parent d15610a commit bd6c007

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

src/Components/BackupDestinationListRecords.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
class BackupDestinationListRecords extends Component implements HasForms, HasTable
2323
{
24-
use InteractsWithTable;
2524
use InteractsWithForms;
25+
use InteractsWithTable;
2626

2727
/**
2828
* @var array<int|string, array<string, string>|string>

src/Components/BackupDestinationStatusListRecords.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
class BackupDestinationStatusListRecords extends Component implements HasForms, HasTable
1818
{
19-
use InteractsWithTable;
2019
use InteractsWithForms;
20+
use InteractsWithTable;
2121

2222
public function render(): View
2323
{

src/FilamentSpatieLaravelBackup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public static function getBackupDestinationStatusData(): array
5858
$config = class_exists('Spatie\Backup\Config\MonitoredBackupsConfig')
5959
? MonitoredBackupsConfig::fromArray(config('backup.monitor_backups'))
6060
: config('backup.monitor_backups');
61-
61+
6262
return BackupDestinationStatusFactory::createForMonitorConfig($config)
6363
->map(function (BackupDestinationStatus $backupDestinationStatus, int | string $key) {
6464
return [

src/FilamentSpatieLaravelBackupPlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function getId(): string
6060

6161
public static function make(): static
6262
{
63-
return new static();
63+
return new static;
6464
}
6565

6666
public function usingPage(string $page): static

src/Jobs/CreateBackupJob.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ class CreateBackupJob implements ShouldQueue
1919
public function __construct(
2020
protected readonly Option $option = Option::ALL,
2121
protected readonly ?int $timeout = null,
22-
) {
23-
}
22+
) {}
2423

2524
public function handle(): void
2625
{

0 commit comments

Comments
 (0)