Fixed some doc issues

This commit is contained in:
Dylan K. Taylor
2017-06-04 14:27:30 +01:00
parent eda7965f86
commit 2f4943ac90
5 changed files with 10 additions and 15 deletions

View File

@ -72,10 +72,10 @@ class UUID{
/**
* Creates an UUIDv3 from binary data or list of binary data
*
* @param string ...$data
* @param string[] ...$data
* @return UUID
*/
public static function fromData(...$data){
public static function fromData(string ...$data){
$hash = hash("md5", implode($data), true);
return self::fromBinary($hash, 3);