Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#165 fix #168

Merged
merged 1 commit into from
Sep 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/default/controller-upload-method-5.3.stub
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Moves the attached file to the server.
*
* @param Symfony\Component\HttpFoundation\File\UploadedFile $file
* @param \Symfony\Component\HttpFoundation\File\UploadedFile $file
*
* @return string
*/
Expand Down
2 changes: 1 addition & 1 deletion templates/default/controller-upload-method.stub
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Moves the attached file to the server.
*
* @param Symfony\Component\HttpFoundation\File\UploadedFile $file
* @param \Symfony\Component\HttpFoundation\File\UploadedFile $file
*
* @return string
*/
Expand Down
14 changes: 7 additions & 7 deletions templates/default/controller.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class [% controller_name %] [% controller_extends %]
/**
* Display a listing of the [% model_name_plural %].
*
* @return Illuminate\View\View
* @return \Illuminate\View\View
*/
public function index()
{
Expand All @@ -23,7 +23,7 @@ class [% controller_name %] [% controller_extends %]
/**
* Show the form for creating a new [% model_name %].
*
* @return Illuminate\View\View
* @return \Illuminate\View\View
*/
public function create()
{
Expand All @@ -37,7 +37,7 @@ class [% controller_name %] [% controller_extends %]
*
* @param [% request_fullname %] [% request_variable %]
*
* @return Illuminate\Http\RedirectResponse | Illuminate\Routing\Redirector
* @return \Illuminate\Http\RedirectResponse | \Illuminate\Routing\Redirector
*/
public function store([% type_hinted_request_name %])
{
Expand All @@ -61,7 +61,7 @@ class [% controller_name %] [% controller_extends %]
*
* @param int $id
*
* @return Illuminate\View\View
* @return \Illuminate\View\View
*/
public function show($id)
{
Expand All @@ -75,7 +75,7 @@ class [% controller_name %] [% controller_extends %]
*
* @param int $id
*
* @return Illuminate\View\View
* @return \Illuminate\View\View
*/
public function edit($id)
{
Expand All @@ -91,7 +91,7 @@ class [% controller_name %] [% controller_extends %]
* @param int $id
* @param [% request_fullname %] [% request_variable %]
*
* @return Illuminate\Http\RedirectResponse | Illuminate\Routing\Redirector
* @return \Illuminate\Http\RedirectResponse | \Illuminate\Routing\Redirector
*/
public function update($id, [% type_hinted_request_name %])
{
Expand All @@ -116,7 +116,7 @@ class [% controller_name %] [% controller_extends %]
*
* @param int $id
*
* @return Illuminate\Http\RedirectResponse | Illuminate\Routing\Redirector
* @return \Illuminate\Http\RedirectResponse | \Illuminate\Routing\Redirector
*/
public function destroy($id)
{
Expand Down