Skip to content

Commit

Permalink
Fix uninitialized use of credentialCallable for PHP8.x
Browse files Browse the repository at this point in the history
  • Loading branch information
curzio-della-santa authored and driehle committed Nov 6, 2023
1 parent f1c5094 commit 01bac65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Options/Authentication.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ final class Authentication extends AbstractOptions
/**
* Callable function to check if a credential is valid
*/
protected mixed $credentialCallable;
protected mixed $credentialCallable = null;

/**
* If an objectManager is not supplied, this metadata will be used
Expand Down

0 comments on commit 01bac65

Please sign in to comment.