Add missing return types to controllers

This commit is contained in:
Matias De lellis
2021-09-19 20:29:22 -03:00
parent 7f81c13a15
commit 3de110ac02
3 changed files with 13 additions and 3 deletions

View File

@@ -96,6 +96,8 @@ class NoteController extends Controller {
* @param array $sharedWith
* @param array $tags
* @param array $attachments
*
* @return JSONResponse
*/
public function create(string $title,
string $content,
@@ -103,7 +105,7 @@ class NoteController extends Controller {
bool $isPinned = false,
array $sharedWith = [],
array $tags = [],
array $attachments = [])
array $attachments = []): JSONResponse
{
$note = $this->noteService->create($this->userId,
$title,