mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-05-05 18:19:59 -05:00
Apply fixes from StyleCI
[ci skip] [skip ci]
This commit is contained in:
committed by
StyleCI Bot
parent
ab3f42e933
commit
a737482e79
@@ -21,7 +21,7 @@ class PersonController extends Controller
|
||||
/**
|
||||
* Display All Persons.
|
||||
*/
|
||||
public function index(): \Illuminate\Contracts\View\Factory | \Illuminate\View\View
|
||||
public function index(): \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
||||
{
|
||||
return \view('mediahub.person.index');
|
||||
}
|
||||
@@ -31,7 +31,7 @@ class PersonController extends Controller
|
||||
*
|
||||
* @param $id
|
||||
*/
|
||||
public function show($id): \Illuminate\Contracts\View\Factory | \Illuminate\View\View
|
||||
public function show($id): \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
||||
{
|
||||
$details = Person::findOrFail($id);
|
||||
$credits = Person::with(['tv', 'season', 'episode', 'movie'])->findOrFail($id);
|
||||
|
||||
Reference in New Issue
Block a user