We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ce04a0 commit afc19a5Copy full SHA for afc19a5
CHANGELOG.md
@@ -1,5 +1,13 @@
1
# Released Notes
2
3
+## v1.0.1 - (2021-10-29)
4
+
5
+### Fixed
6
7
+- Fixed HashAlgorithm
8
9
+-----------------------------------------------------------
10
11
## v1.0.0 - (2021-10-12)
12
13
### Added
src/HashAlgorithm.php
@@ -4,10 +4,10 @@
abstract class HashAlgorithm
{
- public const DEFAULT = PASSWORD_DEFAULT;
- public const BCRYPT = PASSWORD_BCRYPT;
- public const ARGON2I = PASSWORD_ARGON2I;
- public const ARGON2ID = PASSWORD_ARGON2ID;
+ const DEFAULT = PASSWORD_DEFAULT;
+ const BCRYPT = PASSWORD_BCRYPT;
+ const ARGON2I = PASSWORD_ARGON2I;
+ const ARGON2ID = PASSWORD_ARGON2ID;
/**
* @var mixed
0 commit comments