Skip to content

Commit e128c13

Browse files
committed
Fixing style
1 parent 3ca7fd1 commit e128c13

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

src/AbstractModelRecordImport.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use Maatwebsite\Excel\Concerns\SkipsUnknownSheets;
1818
use FromHome\ModelUpload\Jobs\ProcessModelRecordJob;
1919

20-
abstract class AbstractModelRecordImport implements ShouldQueue, SkipsUnknownSheets, WithBatchInserts, WithChunkReading, WithStartRow, WithEvents
20+
abstract class AbstractModelRecordImport implements ShouldQueue, SkipsUnknownSheets, WithBatchInserts, WithChunkReading, WithEvents, WithStartRow
2121
{
2222
use Importable;
2323

src/Actions/StoreModelUploadFile.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313
final class StoreModelUploadFile
1414
{
1515
public function __construct(
16-
private readonly AbstractModelRecordImport $modelRecordImport)
17-
{
18-
}
16+
private readonly AbstractModelRecordImport $modelRecordImport) {}
1917

2018
public function handle(Authenticatable $user, UploadedFile $uploadedFile, string $modelType, array $meta): ModelUploadFile
2119
{

src/Events/ModelUploadFileWasProcessed.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@ final class ModelUploadFileWasProcessed
1010
{
1111
public function __construct(
1212
public readonly ModelUploadFile $modelUploadFile
13-
) {
14-
}
13+
) {}
1514
}

src/Jobs/ProcessModelRecordJob.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ final class ProcessModelRecordJob implements ShouldQueue
2525

2626
public function __construct(
2727
private readonly ModelUploadFile $modelUploadFile
28-
) {
29-
}
28+
) {}
3029

3130
public function handle(RecordProcessorManager $manager): void
3231
{

0 commit comments

Comments
 (0)