Neos\Flow\Session\TransientSession::getLastActivityTimestamp PHP 메소드

getLastActivityTimestamp() 공개 메소드

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