Skip to content

Commit 8f17ce1

Browse files
driesvintsgithub-actions[bot]
authored andcommitted
Fix code styling
1 parent 6a7591a commit 8f17ce1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/Concerns/HasTags.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function tags(): Collection
1919
public function syncTags(array $tags)
2020
{
2121
try {
22-
$this->save();
22+
$this->save();
2323
} catch (\Exception $e) {
2424
dd($e);
2525
}

app/Livewire/NotificationIndicator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
use Illuminate\Support\Facades\Auth;
66
use Illuminate\View\View;
7+
use Livewire\Attributes\On;
78
use Livewire\Component;
8-
use Livewire\Attributes\On;
99

1010
final class NotificationIndicator extends Component
1111
{
@@ -22,7 +22,7 @@ public function render(): View
2222
]);
2323
}
2424

25-
#[On('NotificationMarkedAsRead')]
25+
#[On('NotificationMarkedAsRead')]
2626
public function setHasNotification(int $count): bool
2727
{
2828
return $count > 0;

0 commit comments

Comments
 (0)