Bolt\Session\Handler\FilesystemHandler::read PHP Method

read() public method

public read ( $sessionId )
    public function read($sessionId)
    {
        try {
            return $this->directory->getFile($sessionId)->read();
        } catch (IOException $e) {
            return null;
        }
    }