Skip to content

Commit 7290bad

Browse files
ManukMinasyangithub-actions[bot]
authored andcommitted
Fix styling
1 parent 0ae21b6 commit 7290bad

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/Concerns/InteractsWithKanbanQuery.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function reorderBy(string $column, string $direction = 'asc'): static
4040
return $this;
4141
}
4242

43-
public function getQuery(): Builder|Relation|null
43+
public function getQuery(): Builder | Relation | null
4444
{
4545
return $this->evaluate($this->query);
4646
}

tests/Feature/ActionSystemTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,32 +38,32 @@
3838

3939
test('column actions work via livewire', function () {
4040
$component = Livewire::test(TestBoardWithActions::class);
41-
41+
4242
$component->call('getColumnActionsForColumn', 'todo')
4343
->assertReturned(fn ($actions) => is_array($actions) && count($actions) > 0);
4444
});
4545

4646
test('card actions work via livewire', function () {
4747
$task = Task::first();
4848
$component = Livewire::test(TestBoardWithActions::class);
49-
49+
5050
$board = $component->instance()->getBoard();
5151
$formatted = $board->formatBoardRecord($task);
52-
52+
5353
$component->call('getCardActionsForRecord', $formatted)
5454
->assertReturned(fn ($actions) => is_array($actions) && count($actions) > 0);
5555
});
5656

5757
test('card action can be executed via livewire', function () {
5858
$task = Task::first();
5959
$component = Livewire::test(TestBoardWithActions::class);
60-
60+
6161
$board = $component->instance()->getBoard();
6262
$formatted = $board->formatBoardRecord($task);
63-
63+
6464
$component->call('getCardActionForRecord', $formatted)
6565
->assertReturned('edit');
66-
66+
6767
$component->call('hasCardAction', $formatted)
6868
->assertReturned(true);
6969
});

0 commit comments

Comments
 (0)