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:
@@ -41,7 +41,6 @@ class GroupController extends Controller
|
||||
* @param type Groups $group
|
||||
* @param type Department $department
|
||||
* @param type Group_assign_department $group_assign_department
|
||||
*
|
||||
* @return type Response
|
||||
*/
|
||||
public function index(Groups $group, Department $department, Group_assign_department $group_assign_department)
|
||||
@@ -75,7 +74,6 @@ class GroupController extends Controller
|
||||
*
|
||||
* @param type Groups $group
|
||||
* @param type GroupRequest $request
|
||||
*
|
||||
* @return type Response
|
||||
*/
|
||||
public function store(Groups $group, GroupRequest $request)
|
||||
@@ -96,7 +94,6 @@ class GroupController extends Controller
|
||||
*
|
||||
* @param type int $id
|
||||
* @param type Groups $group
|
||||
*
|
||||
* @return type Response
|
||||
*/
|
||||
public function edit($id, Groups $group)
|
||||
@@ -116,7 +113,6 @@ class GroupController extends Controller
|
||||
* @param type int $id
|
||||
* @param type Groups $group
|
||||
* @param type Request $request
|
||||
*
|
||||
* @return type Response
|
||||
*/
|
||||
public function update($id, Groups $group, GroupUpdateRequest $request)
|
||||
@@ -185,7 +181,6 @@ class GroupController extends Controller
|
||||
* @param type int $id
|
||||
* @param type Groups $group
|
||||
* @param type Group_assign_department $group_assign_department
|
||||
*
|
||||
* @return type Response
|
||||
*/
|
||||
public function destroy($id, Groups $group, Group_assign_department $group_assign_department)
|
||||
|
Reference in New Issue
Block a user