Mercurial > hg > isophonics-drupal-site
view vendor/jcalderonzumba/mink-phantomjs-driver/src/HeadersTrait.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
line wrap: on
line source
<?php namespace Zumba\Mink\Driver; /** * Class HeadersTrait * @package Zumba\Mink\Driver */ trait HeadersTrait { /** * Gets the current request response headers * Should be called only after a request, other calls are undefined behaviour * @return array */ public function getResponseHeaders() { return $this->browser->responseHeaders(); } /** * Current request status code response * @return int */ public function getStatusCode() { return $this->browser->getStatusCode(); } /** * The name say its all * @param string $name * @param string $value */ public function setRequestHeader($name, $value) { $header = array(); $header[$name] = $value; //TODO: as a limitation of the driver it self, we will send permanent for the moment $this->browser->addHeader($header, true); } }