Skip to content

Commit

Permalink
Fix: Missing function doc comment
Browse files Browse the repository at this point in the history
Fix: Opening brace should be on a new line
  • Loading branch information
waterada committed Dec 20, 2015
1 parent 5cd64be commit e4902b7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/Controller/Component/CookieComponent.php
Expand Up @@ -344,7 +344,13 @@ protected function _delete($name)
]);
}

protected function _getCookieEncryptionKey() {
/**
* Returns the encryption key to be used.
*
* @return string
*/
protected function _getCookieEncryptionKey()
{
return $this->_config['key'];
}
}

0 comments on commit e4902b7

Please sign in to comment.