Skip to content

Commit afc19a5

Browse files
committed
Fixed HashAlgorithm class
1 parent 3ce04a0 commit afc19a5

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Released Notes
22

3+
## v1.0.1 - (2021-10-29)
4+
5+
### Fixed
6+
7+
- Fixed HashAlgorithm
8+
9+
-----------------------------------------------------------
10+
311
## v1.0.0 - (2021-10-12)
412

513
### Added

src/HashAlgorithm.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
abstract class HashAlgorithm
66
{
7-
public const DEFAULT = PASSWORD_DEFAULT;
8-
public const BCRYPT = PASSWORD_BCRYPT;
9-
public const ARGON2I = PASSWORD_ARGON2I;
10-
public const ARGON2ID = PASSWORD_ARGON2ID;
7+
const DEFAULT = PASSWORD_DEFAULT;
8+
const BCRYPT = PASSWORD_BCRYPT;
9+
const ARGON2I = PASSWORD_ARGON2I;
10+
const ARGON2ID = PASSWORD_ARGON2ID;
1111

1212
/**
1313
* @var mixed

0 commit comments

Comments
 (0)