Update types throughout the code base

This commit is contained in:
Ben Ramsey
2022-08-09 18:23:17 -05:00
parent 1ba6f22e48
commit 3d3bf1b518
80 changed files with 639 additions and 706 deletions
+3 -2
View File
@@ -22,9 +22,10 @@ interface RandomGeneratorInterface
/**
* Generates a string of randomized binary data
*
* @param positive-int $length The number of bytes of random binary data to generate
* @param positive-int $length The number of bytes of random binary data to
* generate
*
* @return string A binary string
* @return non-empty-string A binary string
*/
public function generate(int $length): string;
}