Update the deprecation messages

This commit is contained in:
Ben Ramsey
2018-08-12 09:40:27 -05:00
parent cd92bfa43c
commit 59c8bb0840
3 changed files with 10 additions and 8 deletions
+4 -4
View File
@@ -18,10 +18,10 @@ namespace Ramsey\Uuid\Generator;
* MtRandRandomGenerator provides functionality to generate strings of random
* binary data using the `mt_rand()` PHP function
*
* @deprecated 4.0.0 The mt_rand() function is not a reliable source of
* randomness. The default RandomBytesGenerator, which uses the
* random_bytes() function, is recommended as the safest and most reliable
* source of randomness.
* @deprecated The mt_rand() function is not a reliable source of randomness.
* The default RandomBytesGenerator, which uses the random_bytes() function,
* is recommended as the safest and most reliable source of randomness.
* <em>This generator will be removed in ramsey/uuid 4.0.0.</em>
* @link http://php.net/mt_rand
*/
class MtRandGenerator implements RandomGeneratorInterface