Skip to content

Commit 1a45ea4

Browse files
ManukMinasyangithub-actions[bot]
authored andcommitted
Fix styling
1 parent 5140061 commit 1a45ea4

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

src/Commands/MakeKanbanBoardCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
namespace Relaticle\Flowforge\Commands;
44

5-
use RuntimeException;
65
use Illuminate\Console\Command;
76
use Illuminate\Filesystem\Filesystem;
87
use Illuminate\Support\Str;
8+
use RuntimeException;
99

1010
class MakeKanbanBoardCommand extends Command
1111
{

src/Filament/Pages/KanbanBoardPage.php

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
namespace Relaticle\Flowforge\Filament\Pages;
66

7-
use InvalidArgumentException;
87
use Filament\Pages\Page;
98
use Illuminate\Support\Str;
9+
use InvalidArgumentException;
1010
use Relaticle\Flowforge\Adapters\DefaultKanbanAdapter;
1111
use Relaticle\Flowforge\Config\KanbanConfig;
1212
use Relaticle\Flowforge\Contracts\KanbanAdapterInterface;
@@ -32,7 +32,6 @@ public function __construct()
3232
/**
3333
* Set the field that stores the column value.
3434
*
35-
* @param string $field
3635
* @return KanbanBoardPage
3736
*/
3837
public function columnField(string $field): static
@@ -45,7 +44,6 @@ public function columnField(string $field): static
4544
/**
4645
* Set the field that stores the column value.
4746
*
48-
* @param string $field
4947
* @return KanbanBoardPage
5048
*/
5149
public function priorityField(string $field): static
@@ -70,7 +68,6 @@ public function columns(array $columns): static
7068
/**
7169
* Set the title field for the Kanban cards.
7270
*
73-
* @param string $field
7471
* @return KanbanBoardPage
7572
*/
7673
public function titleField(string $field): static
@@ -83,7 +80,6 @@ public function titleField(string $field): static
8380
/**
8481
* Set the description field for the Kanban cards.
8582
*
86-
* @param string $field
8783
* @return KanbanBoardPage
8884
*/
8985
public function descriptionField(string $field): static
@@ -144,7 +140,6 @@ public function columnColors(?array $colors = null): static
144140
/**
145141
* Set the order field for the Kanban board.
146142
*
147-
* @param string $field
148143
* @return KanbanBoardPage
149144
*/
150145
public function orderField(string $field): static
@@ -157,7 +152,6 @@ public function orderField(string $field): static
157152
/**
158153
* Set the label for individual cards.
159154
*
160-
* @param string $label
161155
* @return KanbanBoardPage
162156
*/
163157
public function cardLabel(string $label): static
@@ -177,7 +171,6 @@ public function cardLabel(string $label): static
177171
/**
178172
* Set the plural label for multiple cards.
179173
*
180-
* @param string $label
181174
* @return KanbanBoardPage
182175
*/
183176
public function pluralCardLabel(string $label): static

src/Livewire/KanbanBoard.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,15 +222,15 @@ public function editAction(): ?Action
222222
return isset($arguments['record']) ? $this->adapter->getModelById($arguments['record']) : null;
223223
})
224224
->fillForm(function (Action $action, array $arguments) {
225-
if (!isset($arguments['record'])) {
225+
if (! isset($arguments['record'])) {
226226
return [];
227227
}
228228
$record = $this->adapter->getModelById($arguments['record']);
229229

230230
return $record->toArray();
231231
})
232232
->action(function (Action $action, array $arguments) {
233-
if (!isset($arguments['record'])) {
233+
if (! isset($arguments['record'])) {
234234
return;
235235
}
236236

0 commit comments

Comments
 (0)