getEnableCookieValidation() public method

public getEnableCookieValidation ( ) : boolean
return boolean whether cookies should be validated. Defaults to false.
Ejemplo n.º 1
0
 public function testSetEnableCookieValidation()
 {
     $request = new THttpRequest();
     $request->init(null);
     $request->setEnableCookieValidation(true);
     self::assertEquals(true, $request->getEnableCookieValidation());
 }