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 -3
View File
@@ -13,7 +13,7 @@ class EmotionController extends Controller
/**
* Get the list of primary emotions.
*
* @return \Illuminate\Http\Response
* @return \Illuminate\Http\Resources\Json\AnonymousResourceCollection
*/
public function primaries()
{
@@ -23,7 +23,7 @@ class EmotionController extends Controller
/**
* Get the list of secondary emotions.
*
* @return \Illuminate\Http\Response
* @return \Illuminate\Http\Resources\Json\AnonymousResourceCollection
*/
public function secondaries(Request $request, $primaryEmotionId)
{
@@ -36,7 +36,7 @@ class EmotionController extends Controller
/**
* Get the list of emotions.
*
* @return \Illuminate\Http\Response
* @return \Illuminate\Http\Resources\Json\AnonymousResourceCollection
*/
public function emotions(Request $request, $primaryEmotionId, $secondaryEmotionId)
{