cs fix in Session class

This commit is contained in:
Abdul Malik Ikhsan 2020-07-11 20:32:15 +07:00
parent 246ab82658
commit 7b9b865a2c
No known key found for this signature in database
GPG Key ID: 23FCCC74D1442CAE

View File

@ -557,7 +557,7 @@ class Session implements SessionInterface
public function push(string $key, array $data)
{
if ($this->has($key) && is_array($value = $this->get($key)))
{
{
$this->set($key, array_merge($value, $data));
}
}