getEnableCookieValidation() публичный Метод

public getEnableCookieValidation ( ) : boolean
Результат boolean whether cookies should be validated. Defaults to false.
Пример #1
0
 public function testSetEnableCookieValidation()
 {
     $request = new THttpRequest();
     $request->init(null);
     $request->setEnableCookieValidation(true);
     self::assertEquals(true, $request->getEnableCookieValidation());
 }