Clockwork\DataSource\PhpDataSource::getSessionData PHP 메소드

getSessionData() 보호된 메소드

Return session data (replace unserializable items, attempt to remove passwords)
protected getSessionData ( )
    protected function getSessionData()
    {
        if (!isset($_SESSION)) {
            return [];
        }
        return $this->removePasswords($this->replaceUnserializable($_SESSION));
    }