diff options
Diffstat (limited to 'Psso/AuthInterface/Password.php')
| -rw-r--r-- | Psso/AuthInterface/Password.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Psso/AuthInterface/Password.php b/Psso/AuthInterface/Password.php new file mode 100644 index 0000000..d20d759 --- /dev/null +++ b/Psso/AuthInterface/Password.php @@ -0,0 +1,9 @@ +<?php +namespace Psso\AuthInterface; + +interface Password { + public function validatePassword( + string $username, + #[\SensitiveParameter] string $password + ): bool; +} |
