From f1faea26e54245e27d23d94f990fb87f89553452 Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Mon, 30 Jan 2017 13:17:20 -0700 Subject: [PATCH] Code insight fix --- system/src/Grav/Common/Plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Grav/Common/Plugin.php b/system/src/Grav/Common/Plugin.php index 0c31a435e..56ead8b48 100644 --- a/system/src/Grav/Common/Plugin.php +++ b/system/src/Grav/Common/Plugin.php @@ -301,7 +301,7 @@ class Plugin implements EventSubscriberInterface, \ArrayAccess { if ($deep == 'merge') { return Utils::arrayMergeRecursiveUnique($array1, $array2); - } elseif ($deep == true) { + } elseif ($deep === true) { return array_replace_recursive($array1, $array2); } else { return array_merge($array1, $array2);