Skip to content

Commit

Permalink
Improve return types even further
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints committed Nov 30, 2018
1 parent 3e21f1f commit 3a61392
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Http/Controllers/ClientController.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function __construct(ClientRepository $clients,
* Get all of the clients for the authenticated user.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Database\Eloquent\Collection
* @return \Illuminate\Database\Eloquent\Collection
*/
public function forUser(Request $request)
{
Expand All @@ -54,7 +54,7 @@ public function forUser(Request $request)
* Store a new client.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Laravel\Passport\Client
* @return \Laravel\Passport\Client
*/
public function store(Request $request)
{
Expand Down Expand Up @@ -98,7 +98,7 @@ public function update(Request $request, $clientId)
*
* @param Request $request
* @param string $clientId
* @return Response
* @return \Illuminate\Http\Response
*/
public function destroy(Request $request, $clientId)
{
Expand Down

0 comments on commit 3a61392

Please sign in to comment.