Skip to content

Commit 0c7eb8c

Browse files
committed
styling
1 parent 715abce commit 0c7eb8c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/Concerns/InteractsWithTicketRelations.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ trait InteractsWithTicketRelations
66
{
77
/**
88
* Associate Labels into an existing ticket
9-
*
9+
*
1010
* @param mixed $id
1111
* @param array $attributes
1212
* @param bool $touch

src/Models/Ticket.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ public function labels(): BelongsToMany
7777
$table = config('laravel_ticket.table_names.label_ticket', 'label_ticket');
7878

7979
return $this->belongsToMany(
80-
Label::class,
81-
$table['table'],
82-
$table['columns']['ticket_foreign_id'],
83-
$table['columns']['label_foreign_id'],
84-
);
80+
Label::class,
81+
$table['table'],
82+
$table['columns']['ticket_foreign_id'],
83+
$table['columns']['label_foreign_id'],
84+
);
8585
}
8686

8787
/**

0 commit comments

Comments
 (0)