refactor: fix bad return types with Psalter (#2435)

This commit is contained in:
Matthew Brown
2019-02-16 13:20:28 -05:00
committed by Alexis Saettler
parent e04de7e101
commit 684ce6bc56
90 changed files with 774 additions and 503 deletions
+3 -2
View File
@@ -17,7 +17,7 @@ class TasksController extends Controller
/**
* Get the list of tasks for the account.
*
* @return \Illuminate\Http\Response
* @return \Illuminate\Http\Resources\Json\AnonymousResourceCollection
*/
public function index()
{
@@ -63,7 +63,8 @@ class TasksController extends Controller
* Destroy the task.
*
* @param Task $task
* @return \Illuminate\Http\Response
*
* @return null|\Illuminate\Http\JsonResponse
*/
public function destroy(Task $task)
{