Merge pull request #12218 from WrDX/WrDX-session-write-doc

2.x Updated docs for CakeSession
This commit is contained in:
Mark Story 2018-06-12 10:54:22 -04:00 committed by GitHub
commit a1203409aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -45,9 +45,9 @@ class SessionComponent extends Component {
*
* In your controller: $this->Session->write('Controller.sessKey', 'session value');
*
* @param string $name The name of the key your are setting in the session.
* @param string|array $name The name of the key your are setting in the session.
* This should be in a Controller.key format for better organizing
* @param string $value The value you want to store in a session.
* @param string|array $value The value you want to store in a session.
* @return bool Success
* @link https://book.cakephp.org/2.0/en/core-libraries/components/sessions.html#SessionComponent::write
*/

View file

@ -432,7 +432,7 @@ class CakeSession {
* Writes value to given session variable name.
*
* @param string|array $name Name of variable
* @param string $value Value to write
* @param string|array $value Value to write
* @return bool True if the write was successful, false if the write failed
*/
public static function write($name, $value = null) {