Apply Laravel coding style

Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions.

You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root.

For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
This commit is contained in:
Shift
2023-01-07 19:53:40 +00:00
parent 6307afde3d
commit 74bd29e1ee
235 changed files with 14443 additions and 14830 deletions

View File

@@ -54,7 +54,6 @@ class UserController extends Controller
* Display a listing of the resource.
*
* @param type User $user
*
* @return type Response
*/
public function index()
@@ -157,7 +156,6 @@ class UserController extends Controller
*
* @param type User $user
* @param type Sys_userRequest $request
*
* @return type Response
*/
public function store(User $user, Sys_userRequest $request)
@@ -191,7 +189,6 @@ class UserController extends Controller
*
* @param type int $id
* @param type User $user
*
* @return type Response
*/
public function show($id, User $user)
@@ -211,7 +208,6 @@ class UserController extends Controller
*
* @param type int $id
* @param type User $user
*
* @return type Response
*/
public function edit($id, User $user)
@@ -232,7 +228,6 @@ class UserController extends Controller
* @param type int $id
* @param type User $user
* @param type Sys_userUpdate $request
*
* @return type Response
*/
public function update($id, User $user, Sys_userUpdate $request)
@@ -260,7 +255,6 @@ class UserController extends Controller
*
* @param type int $id
* @param type User $user
*
* @return type Response
*/
public function destroy($id, User $user)
@@ -286,8 +280,7 @@ class UserController extends Controller
/**
* User Assign Org.
*
* @param type $id
*
* @param type $id
* @return type boolean
*/
public function UserAssignOrg($id)