Skip to content

Commit

Permalink
Merge pull request #299 from benfavre/patch-1
Browse files Browse the repository at this point in the history
Fix Example Simple login not working
  • Loading branch information
mbonneau committed Jun 11, 2020
2 parents b30d0dd + 941cb87 commit e80aa62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Examples/Authentication/SimpleAuthProviderClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ public function processAuthenticate($signature, $extra = null)
{

if ($signature == "letMeIn") {
return ["SUCCESS"];
return ["SUCCESS", (object)[]];
} else {
return ["FAILURE"];
}

}

}
}

0 comments on commit e80aa62

Please sign in to comment.