Skip to content

Commit

Permalink
Fix Inertia Controllers @return tag and Inertia Vue Input Component (#…
Browse files Browse the repository at this point in the history
…112)

* Fix correct @return tag for Inertia response

* Fix Component/Input.vue autofocus

* Update Input.vue

* Update Input.vue

Co-authored-by: Taylor Otwell <[email protected]>
thewebartisan7 and taylorotwell authored Dec 23, 2021

Verified

This commit was signed with the committer’s verified signature.
doppins-bot Doppins
1 parent b8f3194 commit 627f2d0
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ class ConfirmablePasswordController extends Controller
/**
* Show the confirm password view.
*
* @return \Illuminate\View\View
* @return \Inertia\Response
*/
public function show()
{
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ class EmailVerificationNotificationController extends Controller
* Send a new email verification notification.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
* @return \Illuminate\Http\RedirectResponse
*/
public function store(Request $request)
{
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ class NewPasswordController extends Controller
* Display the password reset view.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\View\View
* @return \Inertia\Response
*/
public function create(Request $request)
{
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ class PasswordResetLinkController extends Controller
/**
* Display the password reset link request view.
*
* @return \Illuminate\View\View
* @return \Inertia\Response
*/
public function create()
{
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ class RegisteredUserController extends Controller
/**
* Display the registration view.
*
* @return \Illuminate\View\View
* @return \Inertia\Response
*/
public function create()
{

0 comments on commit 627f2d0

Please sign in to comment.