/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Auth/Storage
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Auth/Storage/MemoryStorage.php (1654B)
_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;
return null;
}
}