checkIfEmailExists($value); //if it exists, return false! } /** * @return string */ public function message() { return ctrans('texts.email_already_register'); } /** * @param $email * @return bool */ private function checkIfEmailExists($email) : bool { return MultiDB::checkUserEmailExists($email); } }