Change library ircmaxell/random-lib to paragonie/random-lib

This commit is contained in:
karsasmus
2018-01-17 10:54:31 +01:00
committed by Ben Ramsey
parent 4c467ce4d5
commit 2824db17c8
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -19,9 +19,9 @@ use RandomLib\Factory;
/**
* RandomLibAdapter provides functionality to generate strings of random
* binary data using the ircmaxell/random-lib library
* binary data using the paragonie/random-lib library
*
* @link https://packagist.org/packages/ircmaxell/random-lib
* @link https://packagist.org/packages/paragonie/random-lib
*/
class RandomLibAdapter implements RandomGeneratorInterface
{
@@ -36,7 +36,7 @@ class RandomLibAdapter implements RandomGeneratorInterface
* By default, if no `Generator` is passed in, this creates a medium-strength
* generator to use when generating random binary data.
*
* @param Generator $generator An ircmaxell/random-lib `Generator`
* @param Generator $generator An paragonie/random-lib `Generator`
*/
public function __construct(Generator $generator = null)
{