From 467d8b2cd2af969654cca0854637547e3225e7a9 Mon Sep 17 00:00:00 2001 From: Bradley Schofield Date: Wed, 27 Jul 2022 14:50:13 +0100 Subject: [PATCH] Fix linting errors --- app/controllers/api/projects.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/api/projects.php b/app/controllers/api/projects.php index ae9b19245d..46a734a739 100644 --- a/app/controllers/api/projects.php +++ b/app/controllers/api/projects.php @@ -183,7 +183,7 @@ App::get('/v1/projects') $cursorProject = $dbForConsole->getDocument('projects', $cursor); if ($cursorProject->isEmpty()) { - throw new Exception(Exception::GENERAL_CURSOR_NOT_FOUND, "Project '{$cursor}' for the 'cursor' value not found.",); + throw new Exception(Exception::GENERAL_CURSOR_NOT_FOUND, "Project '{$cursor}' for the 'cursor' value not found."); } }