mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-23 11:39:19 -05:00
Apply fixes from StyleCI
[ci skip] [skip ci]
This commit is contained in:
committed by
StyleCI Bot
parent
ab3f42e933
commit
a737482e79
@@ -28,7 +28,7 @@ class ChatBotController extends Controller
|
||||
*
|
||||
* @param null $hash
|
||||
*/
|
||||
public function index($hash = null): \Illuminate\Contracts\Foundation\Application | \Illuminate\Contracts\View\Factory | \Illuminate\View\View
|
||||
public function index($hash = null): \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
||||
{
|
||||
$bots = Bot::orderBy('position', 'ASC')->get();
|
||||
|
||||
@@ -42,7 +42,7 @@ class ChatBotController extends Controller
|
||||
*
|
||||
* @param int $id
|
||||
*/
|
||||
public function edit(Request $request, $id): \Illuminate\Contracts\Foundation\Application | \Illuminate\Contracts\View\Factory | \Illuminate\View\View
|
||||
public function edit(Request $request, $id): \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
||||
{
|
||||
$user = $request->user();
|
||||
$bot = Bot::findOrFail($id);
|
||||
|
||||
Reference in New Issue
Block a user