1
0
Fork 0
mirror of synced 2024-07-01 20:50:49 +12:00

Fix linting errors

This commit is contained in:
Bradley Schofield 2022-07-27 14:50:13 +01:00
parent e3a3ca4c0d
commit 467d8b2cd2

View file

@ -183,7 +183,7 @@ App::get('/v1/projects')
$cursorProject = $dbForConsole->getDocument('projects', $cursor); $cursorProject = $dbForConsole->getDocument('projects', $cursor);
if ($cursorProject->isEmpty()) { 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.");
} }
} }