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

Bump codecov from 3.6.5 to 3.8.3 #109

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
203 changes: 129 additions & 74 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Events/Avatar/UpdateAvatarEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class UpdateAvatarEvent
/**
* Create a new event instance.
*
* @param array $request
* @param array $request
*/
public function __construct(array $request)
{
Expand Down
12 changes: 6 additions & 6 deletions src/Http/Controllers/Housekeeping/NewsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function create()
/**
* Store a newly created resource in storage.
*
* @param NewsStoreRequest $request
* @param NewsStoreRequest $request
* @return \Illuminate\Http\JsonResponse
*/
public function store(NewsStoreRequest $request)
Expand Down Expand Up @@ -70,7 +70,7 @@ public function store(NewsStoreRequest $request)
/**
* Display the specified resource.
*
* @param int $id
* @param int $id
* @return \Illuminate\Http\Response
*/
public function show($id)
Expand All @@ -81,7 +81,7 @@ public function show($id)
/**
* Show the form for editing the specified resource.
*
* @param News $news
* @param News $news
* @return \Illuminate\Http\Response
*/
public function edit(News $news)
Expand All @@ -96,8 +96,8 @@ public function edit(News $news)
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(Request $request, $id)
Expand All @@ -108,7 +108,7 @@ public function update(Request $request, $id)
/**
* Remove the specified resource from storage.
*
* @param int $id
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
Expand Down
12 changes: 6 additions & 6 deletions src/Http/Controllers/Housekeeping/PageController.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function create()
/**
* Store a newly created resource in storage.
*
* @param NewsStoreRequest $request
* @param NewsStoreRequest $request
* @return \Illuminate\Http\JsonResponse
*/
public function store(NewsStoreRequest $request)
Expand Down Expand Up @@ -74,7 +74,7 @@ public function store(NewsStoreRequest $request)
/**
* Display the specified resource.
*
* @param int $id
* @param int $id
* @return \Illuminate\Http\Response
*/
public function show($id)
Expand All @@ -85,7 +85,7 @@ public function show($id)
/**
* Show the form for editing the specified resource.
*
* @param News $news
* @param News $news
* @return \Illuminate\Http\Response
*/
public function edit(News $news)
Expand All @@ -100,8 +100,8 @@ public function edit(News $news)
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(Request $request, $id)
Expand All @@ -112,7 +112,7 @@ public function update(Request $request, $id)
/**
* Remove the specified resource from storage.
*
* @param int $id
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
Expand Down
3 changes: 2 additions & 1 deletion src/Http/RCON/RCONSocket.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ class RCONSocket

/**
* RCONSocket constructor.
* @param array $command
*
* @param array $command
*/
public function __construct(array $command)
{
Expand Down
1 change: 1 addition & 0 deletions src/Http/Request/Avatar/UserRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public function authorize()

/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
Expand Down
Loading