Commit fd281d21 authored by Mark Harding's avatar Mark Harding

(fix): ensure a bool is returned)

1 merge request!236epic/referrals
Pipeline #71665116 canceled with stages
......@@ -103,7 +103,7 @@ class Manager
*/
public function add(Contribution $contribution) : bool
{
return $this->repository->add($contribution);
return (bool) $this->repository->add($contribution);
}
public function issueCheckins($count)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment