getValue() public method

Returns the value of this cookie
public getValue ( ) : mixed
return mixed
 /**
  * @test
  */
 public function getValueReturnsTheSetValue()
 {
     $cookie = new Cookie('foo', 'bar');
     $this->assertEquals('bar', $cookie->getValue());
     $cookie = new Cookie('foo', 'bar');
     $cookie->setValue('baz');
     $this->assertEquals('baz', $cookie->getValue());
     $cookie = new Cookie('foo', true);
     $this->assertSame(true, $cookie->getValue());
     $uri = new Uri('http://localhost');
     $cookie = new Cookie('foo', $uri);
     $this->assertSame($uri, $cookie->getValue());
 }
 /**
  * Automatically expires the session if the user has been inactive for too long.
  *
  * @return boolean TRUE if the session expired, FALSE if not
  */
 protected function autoExpire()
 {
     $lastActivitySecondsAgo = $this->now - $this->lastActivityTimestamp;
     $expired = false;
     if ($this->inactivityTimeout !== 0 && $lastActivitySecondsAgo > $this->inactivityTimeout) {
         $this->started = true;
         $this->sessionIdentifier = $this->sessionCookie->getValue();
         $this->destroy(sprintf('Session %s was inactive for %s seconds, more than the configured timeout of %s seconds.', $this->sessionIdentifier, $lastActivitySecondsAgo, $this->inactivityTimeout));
         $expired = true;
     }
     return $expired;
 }