Our Privacy Policy has changed, please visit https://about.gitlab.com/privacy to review these changes.
0/1 thread resolved
added Squad::Yellow scoped label
unmarked as a Work In Progress
added MR::Awaiting Review scoped label
118 118 119 119 $contributions[] = $contribution; 120 120 } 121 121 $pagingStateToken = $rows->pagingStateToken() ?: null; - Developer
The error was that
$rows
was a boolean, so this line should be:$pagingStateToken = $rows ? $rows->pagingStateToken() : null;