Skip to content

Commit

Permalink
Use string concat instead of double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
bcrowe committed Jun 12, 2014
1 parent 8e73de9 commit 89a7211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controller/Component/FlashComponent.php
Expand Up @@ -78,7 +78,7 @@ public function set($message, array $options = []) {
$message = $message->getMessage();
}

$this->_session->write("Flash.{$opts['key']}", [
$this->_session->write('Flash.' . $opts['key'], [
'message' => $message,
'key' => $opts['key'],
'element' => $opts['element'],
Expand Down

0 comments on commit 89a7211

Please sign in to comment.