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));
    }