Neos\Flow\Session\TransientSession::getLastActivityTimestamp PHP Method

getLastActivityTimestamp() public method

Returns the unix time stamp marking the last point in time this session has been in use.
public getLastActivityTimestamp ( ) : integer
return integer unix timestamp
    public function getLastActivityTimestamp()
    {
        if ($this->lastActivityTimestamp === null) {
            $this->touch();
        }
        return $this->lastActivityTimestamp;
    }