Skip to content

Commit 3c0e9e3

Browse files
cklei-carlygithub-actions[bot]
authored andcommitted
Fix styling
1 parent 7e9c842 commit 3c0e9e3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/Livewire/NavigationTree.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public function deleteAction()
9797
->modalHeading('Delete Navigation Item')
9898
->modalDescription('Are you sure you want to delete this navigation item?')
9999
->modalAlignment(Alignment::Center)
100-
->action(function ($arguments){
100+
->action(function ($arguments) {
101101
$this->confirmDelete($arguments['id'] ?? null);
102102
})
103103
->after(function () {
@@ -160,7 +160,7 @@ protected function getTreeQuery(): Builder
160160
protected function mutateBeforeFill($models): array
161161
{
162162
return collect($models)
163-
->map(fn (Navigation|Model $model) => [
163+
->map(fn (Navigation | Model $model) => [
164164
'id' => $model->id,
165165
'name' => $model->hasTranslation('title', $this->activeLocale) ? $model->getTranslation('title', $this->activeLocale) : $model->title,
166166
'visible' => $model->isVisibility(),
@@ -196,7 +196,7 @@ protected function getModel(): string
196196
}
197197

198198
/**
199-
* @return class-string<Resource>
199+
* @return class-string<resource>
200200
*/
201201
protected function getResource(): string
202202
{

0 commit comments

Comments
 (0)