Apply fixes from StyleCI
This commit is contained in:
@@ -47,6 +47,7 @@ class CategoryController extends Controller
|
||||
* Indexing all Category.
|
||||
*
|
||||
* @param type Category $category
|
||||
*
|
||||
* @return Response
|
||||
*/
|
||||
public function index()
|
||||
@@ -114,6 +115,7 @@ class CategoryController extends Controller
|
||||
* Create a Category.
|
||||
*
|
||||
* @param type Category $category
|
||||
*
|
||||
* @return type view
|
||||
*/
|
||||
public function create(Category $category)
|
||||
@@ -134,6 +136,7 @@ class CategoryController extends Controller
|
||||
*
|
||||
* @param type Category $category
|
||||
* @param type CategoryRequest $request
|
||||
*
|
||||
* @return type Redirect
|
||||
*/
|
||||
public function store(Category $category, CategoryRequest $request)
|
||||
@@ -155,8 +158,9 @@ class CategoryController extends Controller
|
||||
/**
|
||||
* Show the form for editing the specified category.
|
||||
*
|
||||
* @param type $slug
|
||||
* @param type $slug
|
||||
* @param type Category $category
|
||||
*
|
||||
* @return type view
|
||||
*/
|
||||
public function edit($id)
|
||||
@@ -171,9 +175,10 @@ class CategoryController extends Controller
|
||||
/**
|
||||
* Update the specified Category in storage.
|
||||
*
|
||||
* @param type $slug
|
||||
* @param type $slug
|
||||
* @param type Category $category
|
||||
* @param type CategoryUpdate $request
|
||||
*
|
||||
* @return type redirect
|
||||
*/
|
||||
public function update($id, CategoryRequest $request)
|
||||
@@ -199,9 +204,10 @@ class CategoryController extends Controller
|
||||
/**
|
||||
* Remove the specified category from storage.
|
||||
*
|
||||
* @param type $id
|
||||
* @param type $id
|
||||
* @param type Category $category
|
||||
* @param type Relationship $relation
|
||||
*
|
||||
* @return type Redirect
|
||||
*/
|
||||
public function destroy($id, Category $category, Relationship $relation)
|
||||
|
Reference in New Issue
Block a user