From e81568ea4fb18daa8fe286a080b3384592eece06 Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Tue, 28 Jul 2015 11:28:07 -0500 Subject: [PATCH] Fix parse error caused by double "new" keyword --- src/Uuid.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Uuid.php b/src/Uuid.php index 64a1388..85a4328 100644 --- a/src/Uuid.php +++ b/src/Uuid.php @@ -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;