Skip to content

Commit 7db5516

Browse files
ousidgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 49ccbae commit 7db5516

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

config/laravel_ticket.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,5 @@
8181
'message' => \Coderflex\LaravelTicket\Models\Message::class,
8282
'category' => \Coderflex\LaravelTicket\Models\Category::class,
8383
'label' => \Coderflex\LaravelTicket\Models\Label::class,
84-
]
84+
],
8585
];

src/Concerns/HasTickets.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ public function tickets(): HasMany
1515
'laravel_ticket.models.ticket',
1616
parent::getTable()
1717
);
18+
1819
return $this->hasMany($model, 'user_id');
1920
}
2021

@@ -27,6 +28,7 @@ public function messages(): HasMany
2728
'laravel_ticket.models.message',
2829
parent::getTable()
2930
);
31+
3032
return $this->hasMany($model, 'user_id');
3133
}
3234
}

tests/Database/Migrations/create_users_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
use Illuminate\Database\Schema\Blueprint;
55
use Illuminate\Support\Facades\Schema;
66

7-
return new class() extends Migration
7+
return new class extends Migration
88
{
99
public function up()
1010
{

0 commit comments

Comments
 (0)