mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-15 16:07:55 +03:00
Fix parse error caused by double "new" keyword
This commit is contained in:
+1
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user