Convert string to lowercase. Fixes GH Issue #131

This commit is contained in:
Jessica Mauerhan
2016-09-30 16:01:45 -04:00
parent 0a620d1966
commit e80e3d5828
+1
View File
@@ -187,6 +187,7 @@ class UuidFactory implements UuidFactoryInterface
public function fromString($uuid)
{
$uuid = strtolower($uuid);
return $this->codec->decode($uuid);
}