Skip to content

Commit

Permalink
Merge pull request #825 from curzio-della-santa/fix/816/uninitialized…
Browse files Browse the repository at this point in the history
…-credential-callable

Fix uninitialized use of credentialCallable for PHP8.x
  • Loading branch information
driehle committed Nov 6, 2023
2 parents 774553d + 1fb31c6 commit 72e3f63
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 72e3f63

Please sign in to comment.