From 1a2036eaa713a1bbe639b2d558c8b4fe5d922c06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89bano=20Penha=20Andrello=20Lopes?= Date: Thu, 23 May 2019 09:13:18 -0300 Subject: [PATCH] 4.5.2: Marketplace validation (MEQP1) fix --- .../code/community/Signifyd/Connect/Model/Order/Order.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/www/magento/app/code/community/Signifyd/Connect/Model/Order/Order.php b/www/magento/app/code/community/Signifyd/Connect/Model/Order/Order.php index 83586c0..a5019bf 100644 --- a/www/magento/app/code/community/Signifyd/Connect/Model/Order/Order.php +++ b/www/magento/app/code/community/Signifyd/Connect/Model/Order/Order.php @@ -36,11 +36,11 @@ protected function _setState($state, $status = false, $comment = '', $isCustomer $this->logger->addLog("Request URL: {$currentUrl}", $this); $debugBacktrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); - $debugBacktraceLog = []; - $nonMagentoModules = []; + $debugBacktraceLog = array(); + $nonMagentoModules = array(); foreach ($debugBacktrace as $i => $step) { - $debugBacktraceLog[$i] = []; + $debugBacktraceLog[$i] = array(); $function = ''; if (isset($step['class'])) {