/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Auth/Storage
NameSizeModeActions
MemoryStorage.php16320644editdlrm
SessionStorage.php36700644editdlrm
StorageInterface.php14700644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Auth/Storage/MemoryStorage.php (1632B)
_user; } /** * @inheritDoc */ public function write($user): void { $this->_user = $user; } /** * @inheritDoc */ public function delete(): void { $this->_user = null; } /** * @inheritDoc */ public function redirectUrl($url = null) { if ($url === null) { return $this->_redirectUrl; } if ($url === false) { $this->_redirectUrl = null; return null; } $this->_redirectUrl = $url; } }