Fix parse error caused by double "new" keyword

This commit is contained in:
Ben Ramsey
2015-07-28 11:28:07 -05:00
parent a95140c25c
commit e81568ea4f
+1 -1
View File
@@ -737,7 +737,7 @@ class Uuid implements UuidInterface
public static function getFactory()
{
if (! self::$factory) {
self::$factory = new new UuidFactory();
self::$factory = new UuidFactory();
}
return self::$factory;