get("user_id"); $limit = NULL; if ($params->exists(["limit"])) { $limit = $params->get("limit"); } $finished = NULL; if ($params->exists(["finished"])) { $finished = $params->get("finished"); } $records = getRecords($user_id, $limit, $finished); $json = new JsonBuilder(); $json->addRecords($records); respondJson($json); } } $branch = new GetRecordsBranch(); $branch->execute();