From 731ccef0f18a69f6f830a698fcc13b34d4e1ff62 Mon Sep 17 00:00:00 2001 From: malekziad Date: Sun, 17 Oct 2021 19:15:55 +0200 Subject: [PATCH] php 7.4 implode support --- src/PAMI/Message/Event/Factory/Impl/EventFactoryImpl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PAMI/Message/Event/Factory/Impl/EventFactoryImpl.php b/src/PAMI/Message/Event/Factory/Impl/EventFactoryImpl.php index 4b9cf32a7..e7f61046b 100644 --- a/src/PAMI/Message/Event/Factory/Impl/EventFactoryImpl.php +++ b/src/PAMI/Message/Event/Factory/Impl/EventFactoryImpl.php @@ -69,7 +69,7 @@ public static function createFromRaw($message) for ($i = 0; $i < $totalParts; $i++) { $parts[$i] = ucfirst($parts[$i]); } - $name = implode('', $parts); + $name = implode('',$parts); $className = '\\PAMI\\Message\\Event\\' . $name . 'Event'; if (class_exists($className, true)) { return new $className($message);