Can you add the findEmail function ? ``` public function findEmail(string $email) { $req = $this->client ->getClient() ->get('/api/3/contacts/?search=' . $email); return $req->getBody()->getContents(); } ```