-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge pull request #14787 from snipe/fixes/return_redirect_fixes_for_…
…docblock Fixes path for redirect response
Showing
23 changed files
with
45 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,7 +58,7 @@ public function create() | |
* | ||
* @author [A. Gianotto] [<[email protected]>] | ||
* @param ImageUploadRequest $request | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
* @throws \Illuminate\Auth\Access\AuthorizationException | ||
*/ | ||
public function store(ImageUploadRequest $request) | ||
|
@@ -151,7 +151,7 @@ public function getClone($accessoryId = null) | |
* @author [A. Gianotto] [<[email protected]>] | ||
* @param ImageUploadRequest $request | ||
* @param int $accessoryId | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
* @throws \Illuminate\Auth\Access\AuthorizationException | ||
*/ | ||
public function update(ImageUploadRequest $request, $accessoryId = null) | ||
|
@@ -205,7 +205,7 @@ public function update(ImageUploadRequest $request, $accessoryId = null) | |
* | ||
* @author [A. Gianotto] [<[email protected]>] | ||
* @param int $accessoryId | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
* @throws \Illuminate\Auth\Access\AuthorizationException | ||
*/ | ||
public function destroy($accessoryId) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ public function create($accessoryUserId = null, $backto = null) | |
* @author [A. Gianotto] [<[email protected]>] | ||
* @param null $accessoryUserId | ||
* @param string $backto | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
* @throws \Illuminate\Auth\Access\AuthorizationException | ||
* @internal param int $accessoryId | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,7 +59,7 @@ public function create($id) | |
* @author [A. Gianotto] [<[email protected]>] | ||
* @param Request $request | ||
* @param int $accessoryId | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
* @throws \Illuminate\Auth\Access\AuthorizationException | ||
*/ | ||
public function store(Request $request, $accessoryId) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -274,7 +274,7 @@ public function destroy($id) | |
* | ||
* @author [A. Gianotto] [<[email protected]>] | ||
* @param int $accessoryId | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
*/ | ||
public function checkout(Request $request, $accessoryId) | ||
{ | ||
|
@@ -320,7 +320,7 @@ public function checkout(Request $request, $accessoryId) | |
* @param Request $request | ||
* @param int $accessoryUserId | ||
* @param string $backto | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
* @internal param int $accessoryId | ||
*/ | ||
public function checkin(Request $request, $accessoryUserId = null) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -179,7 +179,7 @@ public function disassociate(Request $request, $field_id) | |
* | ||
* @author [Brady Wetherington] [<[email protected]>] | ||
* @since [v1.8] | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
*/ | ||
public function destroy($field_id) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -118,7 +118,7 @@ public function store(Request $request) | |
* | ||
* @author [A. Gianotto] [<[email protected]>] | ||
* @since [v4.0] | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
*/ | ||
public function destroy($id) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,7 +66,7 @@ public function create() | |
* @author [A. Gianotto] [<[email protected]>] | ||
* @since [v1.0] | ||
* @param ImageUploadRequest $request | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
* @throws \Illuminate\Auth\Access\AuthorizationException | ||
*/ | ||
public function store(ImageUploadRequest $request) | ||
|
@@ -139,7 +139,7 @@ public function edit($modelId = null) | |
* @since [v1.0] | ||
* @param ImageUploadRequest $request | ||
* @param int $modelId | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
* @throws \Illuminate\Auth\Access\AuthorizationException | ||
*/ | ||
public function update(ImageUploadRequest $request, $modelId = null) | ||
|
@@ -200,7 +200,7 @@ public function update(ImageUploadRequest $request, $modelId = null) | |
* @author [A. Gianotto] [<[email protected]>] | ||
* @since [v1.0] | ||
* @param int $modelId | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
* @throws \Illuminate\Auth\Access\AuthorizationException | ||
*/ | ||
public function destroy($modelId) | ||
|
@@ -237,7 +237,7 @@ public function destroy($modelId) | |
* @author [A. Gianotto] [<[email protected]>] | ||
* @since [v1.0] | ||
* @param int $id | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
* @throws \Illuminate\Auth\Access\AuthorizationException | ||
*/ | ||
public function getRestore($id) | ||
|
@@ -429,7 +429,7 @@ public function postBulkEditSave(Request $request) | |
* @author [A. Gianotto] [<[email protected]>] | ||
* @since [v1.0] | ||
* @param int $modelId | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
*/ | ||
public function postBulkDelete(Request $request) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ class AssetModelsFilesController extends Controller | |
* | ||
* @param UploadFileRequest $request | ||
* @param int $modelId | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
* @throws \Illuminate\Auth\Access\AuthorizationException | ||
*@since [v1.0] | ||
* @author [A. Gianotto] [<[email protected]>] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ public function create($assetId) | |
* @author [A. Gianotto] [<[email protected]>] | ||
* @param AssetCheckoutRequest $request | ||
* @param int $assetId | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
* @since [v1.0] | ||
*/ | ||
public function store(AssetCheckoutRequest $request, $assetId) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ class AssetFilesController extends Controller | |
* | ||
* @param UploadFileRequest $request | ||
* @param int $assetId | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
* @throws \Illuminate\Auth\Access\AuthorizationException | ||
*@since [v1.0] | ||
* @author [A. Gianotto] [<[email protected]>] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,7 +96,7 @@ public function create(Request $request) | |
* | ||
* @author [A. Gianotto] [<[email protected]>] | ||
* @since [v1.0] | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
*/ | ||
public function store(ImageUploadRequest $request) | ||
{ | ||
|
@@ -411,7 +411,7 @@ public function update(ImageUploadRequest $request, $assetId = null) | |
* @author [A. Gianotto] [<[email protected]>] | ||
* @param int $assetId | ||
* @since [v1.0] | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
*/ | ||
public function destroy($assetId) | ||
{ | ||
|
@@ -445,7 +445,7 @@ public function destroy($assetId) | |
* | ||
* @author [A. Gianotto] [<[email protected]>] | ||
* @since [v3.0] | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
*/ | ||
public function getAssetBySerial(Request $request) | ||
{ | ||
|
@@ -463,7 +463,7 @@ public function getAssetBySerial(Request $request) | |
* | ||
* @author [A. Gianotto] [<[email protected]>] | ||
* @since [v3.0] | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
*/ | ||
public function getAssetByTag(Request $request, $tag=null) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -105,7 +105,7 @@ public function update(Request $request) | |
* | ||
* @author [A. Gianotto] [<[email protected]>] | ||
* @since [v1.0] | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
*/ | ||
public function destroy(Request $request) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,7 +86,7 @@ public function create() | |
* @author [Brady Wetherington] [<[email protected]>] | ||
* @since [v1.8] | ||
* @param Request $request | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
* @throws \Illuminate\Auth\Access\AuthorizationException | ||
*/ | ||
public function store(Request $request) | ||
|
@@ -126,7 +126,7 @@ public function store(Request $request) | |
* @author [A. Gianotto] [<[email protected]>] | ||
* @param int $id | ||
* @since [v6.0.14] | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
* @throws \Illuminate\Auth\Access\AuthorizationException | ||
*/ | ||
public function edit($id) | ||
|
@@ -147,7 +147,7 @@ public function edit($id) | |
* @author [A. Gianotto] [<[email protected]>] | ||
* @param int $id | ||
* @since [v6.0.14] | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
* @throws \Illuminate\Auth\Access\AuthorizationException | ||
*/ | ||
public function update(Request $request, $id) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,7 @@ public function showCheckout($kit_id) | |
* Validate and process the new Predefined Kit data. | ||
* | ||
* @author [D. Minaev.] [<[email protected]>] | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
*/ | ||
public function store(Request $request, $kit_id) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ public function create() | |
* Validate and process the new Predefined Kit data. | ||
* | ||
* @author [D. Minaev] [<[email protected]>] | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
*/ | ||
public function store(ImageUploadRequest $request) | ||
{ | ||
|
@@ -95,7 +95,7 @@ public function edit($kit_id = null) | |
* @author [D. Minaev] [<[email protected]>] | ||
* @since [v1.0] | ||
* @param int $kit_id | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
*/ | ||
public function update(ImageUploadRequest $request, $kit_id = null) | ||
{ | ||
|
@@ -122,7 +122,7 @@ public function update(ImageUploadRequest $request, $kit_id = null) | |
* @author [D. Minaev] [<[email protected]>] | ||
* @since [v1.0] | ||
* @param int $kit_id | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
*/ | ||
public function destroy($kit_id) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -220,7 +220,7 @@ public function show($manufacturerId = null) | |
* @author [A. Gianotto] [<[email protected]>] | ||
* @since [v4.1.15] | ||
* @param int $manufacturers_id | ||
* @return Redirect | ||
* @return \Illuminate\Http\RedirectResponse | ||
* @throws \Illuminate\Auth\Access\AuthorizationException | ||
*/ | ||
public function restore($id) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters