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

build(deps): bump guzzlehttp/guzzle from 7.2.0 to 7.4.3 #205

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
2 changes: 1 addition & 1 deletion app/Console/Commands/MakeApiControllerCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class MakeApiControllerCommand extends GeneratorCommand
/**
* Create a new command instance.
*
* @param Filesystem $file
* @param Filesystem $file
*/
public function __construct(Filesystem $file)
{
Expand Down
9 changes: 5 additions & 4 deletions app/Http/Controllers/Api/ApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,9 @@ public function __construct()
/**
* Display a listing of the resource.
*
* @param Request $request
* @param Request $request
* @return \Illuminate\Http\Resources\Json\AnonymousResourceCollection
*
* @throws \Illuminate\Validation\ValidationException
*/
public function index(Request $request)
Expand Down Expand Up @@ -128,7 +129,7 @@ public function store()
/**
* Display the specified resource.
*
* @param int $id
* @param int $id
* @return JsonResource
*/
public function show($id)
Expand All @@ -143,7 +144,7 @@ public function show($id)
/**
* Update the specified resource in storage.
*
* @param int $id
* @param int $id
* @return JsonResource
*/
public function update($id)
Expand All @@ -162,7 +163,7 @@ public function update($id)
/**
* Remove the specified resource from storage.
*
* @param int $id
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
Expand Down
6 changes: 3 additions & 3 deletions app/Http/Controllers/Api/OrderController.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public function destroyRequest()
/**
* Create an Order, which requires adding one or more Items to the Order.
*
* @param Request $request
* @param Request $request
* @return Response
*/
public function storeOrder(StoreOrder $request)
Expand Down Expand Up @@ -114,7 +114,7 @@ public function storeOrder(StoreOrder $request)
/**
* Add one or more Items to an existing Order.
*
* @param UpdateOrder $request
* @param UpdateOrder $request
* @return Response
*/
public function addItems(UpdateOrder $request)
Expand Down Expand Up @@ -146,7 +146,7 @@ public function addItems(UpdateOrder $request)
/**
* Remove one or more Items from an existing Order.
*
* @param UpdateOrder $request
* @param UpdateOrder $request
* @return Response
*/
public function removeItems(UpdateOrder $request)
Expand Down
7 changes: 4 additions & 3 deletions app/Repositories/BaseRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ public function all()
}

/**
* @param int $limit
* @param int|null $paginate
* @param int $limit
* @param int|null $paginate
* @return mixed
*/
public function limit(int $limit, int $paginate = null)
Expand All @@ -35,7 +35,7 @@ public function limit(int $limit, int $paginate = null)
}

/**
* @param int $paginate
* @param int $paginate
* @return mixed
*/
public function paginate(int $paginate)
Expand All @@ -45,6 +45,7 @@ public function paginate(int $paginate)

/**
* @return object
*
* @throws \ReflectionException
*/
public function new()
Expand Down
4 changes: 2 additions & 2 deletions app/Repositories/CountryRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
class CountryRepository extends BaseRepository implements CountryRepositoryInterface
{
/**
* @var string
* @var string
*/
protected $class = Country::class;

/**
* @var Country
* @var Country
*/
protected $country;

Expand Down
6 changes: 3 additions & 3 deletions app/Repositories/UserRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ class UserRepository extends CrudRepository implements UserRepositoryInterface
/**
* UserRepository constructor.
*
* @param User $user
* @param AccountRepositoryInterface $account
* @param Hasher $hasher
* @param User $user
* @param AccountRepositoryInterface $account
* @param Hasher $hasher
*/
public function __construct(
User $user,
Expand Down
Loading