Skip to content

Commit

Permalink
cs fix in Session class
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Jul 11, 2020
1 parent 246ab82 commit 7b9b865
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/Session/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
}
Expand Down

0 comments on commit 7b9b865

Please sign in to comment.