Add docblocks for classes and interfaces in Ramsey\Uuid\Generator namespace

This commit is contained in:
Ben Ramsey
2015-09-26 19:06:21 -05:00
parent dc26d4addb
commit 5bf7f5064c
12 changed files with 185 additions and 22 deletions
+7 -2
View File
@@ -14,12 +14,17 @@
namespace Ramsey\Uuid\Generator;
/**
* RandomGeneratorInterface provides functionality to generate strings of random
* binary data
*/
interface RandomGeneratorInterface
{
/**
* @param integer $length
* Generates a string of random binary data of the specified length
*
* @return string
* @param integer $length The number of bytes of random binary data to generate
* @return string A binary string
*/
public function generate($length);
}