getEnableCookieValidation() public method

public getEnableCookieValidation ( ) : boolean
return boolean whether cookies should be validated. Defaults to false.
コード例 #1
0
ファイル: THttpRequestTest.php プロジェクト: pradosoft/prado
 public function testSetEnableCookieValidation()
 {
     $request = new THttpRequest();
     $request->init(null);
     $request->setEnableCookieValidation(true);
     self::assertEquals(true, $request->getEnableCookieValidation());
 }