Skip to content

Commit 395003d

Browse files
authored
use normal formatting for method signature (#1596)
wrong formatting for multiline method signature. single or multi line would be fine here, but switched it to single since it's simple.
1 parent 8ce62b4 commit 395003d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Http/Controllers/MasterSupervisorController.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ class MasterSupervisorController extends Controller
1515
* @param \Laravel\Horizon\Contracts\SupervisorRepository $supervisors
1616
* @return \Illuminate\Support\Collection
1717
*/
18-
public function index(MasterSupervisorRepository $masters,
19-
SupervisorRepository $supervisors)
18+
public function index(MasterSupervisorRepository $masters, SupervisorRepository $supervisors)
2019
{
2120
$masters = collect($masters->all())->keyBy('name')->sortBy('name');
2221

0 commit comments

Comments
 (0)