Skip to content

Commit 7d1f2df

Browse files
authored
Document hashedValue as non-nullable (#54615)
1 parent 3cf9805 commit 7d1f2df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Illuminate/Hashing/AbstractHasher.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function info($hashedValue)
1919
* Check the given plain value against a hash.
2020
*
2121
* @param string $value
22-
* @param string|null $hashedValue
22+
* @param string $hashedValue
2323
* @param array $options
2424
* @return bool
2525
*/

src/Illuminate/Hashing/Argon2IdHasher.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Argon2IdHasher extends ArgonHasher
1010
* Check the given plain value against a hash.
1111
*
1212
* @param string $value
13-
* @param string|null $hashedValue
13+
* @param string $hashedValue
1414
* @param array $options
1515
* @return bool
1616
*

0 commit comments

Comments
 (0)