From 7b9b865a2cfa9c27c9c6d31728e156cc3761873d Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Sat, 11 Jul 2020 20:32:15 +0700 Subject: [PATCH] cs fix in Session class --- system/Session/Session.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/Session/Session.php b/system/Session/Session.php index 8e845462065b..3494b88993f2 100644 --- a/system/Session/Session.php +++ b/system/Session/Session.php @@ -557,7 +557,7 @@ public function has(string $key): bool public function push(string $key, array $data) { if ($this->has($key) && is_array($value = $this->get($key))) - { + { $this->set($key, array_merge($value, $data)); } }