Skip to content

Commit 89e60b9

Browse files
authored
[fix] code style
- fixes code style issue
1 parent aca2cf6 commit 89e60b9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Http/Controllers/TasksController.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,10 @@ public function view(Task $task)
9797
*/
9898
public function edit(Task $task)
9999
{
100-
$commands = Totem::getCommands()->map(function($command) {
101-
return ['name' => $command->getName(), 'description' => $command->getDescription()];
100+
$commands = Totem::getCommands()->map(function ($command) {
101+
return ['name' => $command->getName(), 'description' => $command->getDescription()];
102102
});
103+
103104
return view('totem::tasks.form', [
104105
'task' => $task,
105106
'commands' => $commands,

0 commit comments

Comments
 (0)