Skip to content

Commit 002a0bf

Browse files
committed
Add missing param type annotations in KanbanBoardPage methods
1 parent ca139c1 commit 002a0bf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Filament/Pages/KanbanBoardPage.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ public function __construct()
3131
/**
3232
* Set the field that stores the column value.
3333
*
34+
* @param string $field
3435
* @return KanbanBoardPage
3536
*/
3637
public function columnField(string $field): static
@@ -140,6 +141,7 @@ public function columnColors(?array $colors = null): static
140141
/**
141142
* Set the order field for the Kanban board.
142143
*
144+
* @param string $field
143145
* @return KanbanBoardPage
144146
*/
145147
public function orderField(string $field): static
@@ -152,6 +154,7 @@ public function orderField(string $field): static
152154
/**
153155
* Set the label for individual cards.
154156
*
157+
* @param string $label
155158
* @return KanbanBoardPage
156159
*/
157160
public function cardLabel(string $label): static
@@ -171,6 +174,7 @@ public function cardLabel(string $label): static
171174
/**
172175
* Set the plural label for multiple cards.
173176
*
177+
* @param string $label
174178
* @return KanbanBoardPage
175179
*/
176180
public function pluralCardLabel(string $label): static

0 commit comments

Comments
 (0)