Skip to content

Commit

Permalink
Fixed CS error
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Sep 13, 2015
1 parent 92c5466 commit 47ee54f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Network/Session.php
Expand Up @@ -437,7 +437,7 @@ public function write($name, $value = null)
$write = [$name => $value];
}

$data = isset($_SESSION) ? $_SESSION : [];
$data = isset($_SESSION) ? $_SESSION : [];
foreach ($write as $key => $val) {
$data = Hash::insert($data, $key, $val);
}
Expand Down

0 comments on commit 47ee54f

Please sign in to comment.