Exemple #1
0
 /**
  * Check if the response headers have a header set
  * @param  string $header
  * @return bool
  */
 public function hasHeader($header)
 {
     if (empty($this->response)) {
         return false;
     }
     return $this->response->hasHeader($header);
 }