예제 #1
0
파일: Cookie.php 프로젝트: pckg/htmlbuilder
 /**
  * @param $method
  *
  * @return bool
  */
 public function canHandle($method)
 {
     return isset($_COOKIE) && parent::canHandle($method);
 }
예제 #2
0
 /**
  * @param $method
  *
  * @return bool
  */
 public function canHandle($method)
 {
     return isset($_SESSION) && parent::canHandle($method);
 }