Upgrade to 3.2.0

This commit is contained in:
Bastian Allgeier
2019-06-25 09:56:08 +02:00
parent 9e18cf635d
commit 9c89153d35
296 changed files with 14408 additions and 2504 deletions

View File

@@ -15,9 +15,9 @@ use Kirby\Toolkit\Str;
/**
* @package Kirby Session
* @author Lukas Bestle <lukas@getkirby.com>
* @link http://getkirby.com
* @copyright Bastian Allgeier
* @license MIT
* @link https://getkirby.com
* @copyright Bastian Allgeier GmbH
* @license https://opensource.org/licenses/MIT
*/
class Session
{
@@ -49,7 +49,7 @@ class Session
/**
* Creates a new Session instance
*
* @param Sessions $sessions Parent sessions object
* @param Kirby\Session\Sessions $sessions Parent sessions object
* @param string|null $token Session token or null for a new session
* @param array $options Optional additional options:
* - `mode`: Token transmission mode (cookie or manual)
@@ -305,9 +305,9 @@ class Session
/**
* Returns the session data object
*
* @return SessionData
* @return Kirby\Session\SessionData
*/
public function data(): SessionData
public function data()
{
return $this->data;
}