Home
last modified time | relevance | path

Searched refs:_response (Results 1 – 17 of 17) sorted by relevance

/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DResultSet.php36 private $_response; variable in Elastica\\ResultSet
51 $this->_response = $response;
85 $data = $this->_response->getData();
97 $data = $this->_response->getData();
107 $data = $this->_response->getData();
117 $data = $this->_response->getData();
131 $data = $this->_response->getData();
145 $data = $this->_response->getData();
155 $data = $this->_response->getData();
165 $data = $this->_response
[all...]
H A DTask.php31 protected $_response;
78 if (null === $this->_response) {
82 return $this->_response;
101 $this->_response = $this->_client->requestEndpoint($endpoint);
28 protected $_response; global() variable in Elastica\\Task
H A DResponse.php42 protected $_response; variable in Elastica\\Response
67 $this->_response = $responseString;
210 if (null == $this->_response) {
212 $this->_response = $response;
216 return $this->_response;
H A DStatus.php26 protected $_response;
135 if (null === $this->_response) {
139 return $this->_response;
163 $this->_response = $this->_client->requestEndpoint(new Stats());
24 protected $_response; global() variable in Elastica\\Status
H A DCluster.php33 protected $_response;
60 $this->_response = $this->_client->requestEndpoint(new State());
69 return $this->_response;
30 protected $_response; global() variable in Elastica\\Cluster
/plugin/authyubikey/lib/
H A DYubico.php81 var $_response; variable in Auth_Yubico
201 return $this->_response;
256 if(!preg_match("/" . $param . "=([0-9]+)/", $this->_response, $out)) {
345 $this->_response=null;
363 $this->_response .= 'URL=' . $cinfo['url'] ."\n"
413 if (!$wait_for_all) { $this->_response = $str; }
417 if (!$wait_for_all) { $this->_response = $str; }
424 if (!$wait_for_all) { $this->_response = $str; }
428 if (!$wait_for_all) { $this->_response = $str; }
/plugin/elasticsearch/vendor/ruflin/elastica/src/Node/
H A DStats.php26 protected $_response;
103 return $this->_response;
121 $this->_response = $this->getNode()->getClient()->requestEndpoint($endpoint);
125 return $this->_response;
23 protected $_response; global() variable in Elastica\\Node\\Stats
H A DInfo.php26 protected $_response;
202 return $this->_response;
228 $this->_response = $this->getNode()->getClient()->requestEndpoint($endpoint);
235 return $this->_response;
23 protected $_response; global() variable in Elastica\\Node\\Info
/plugin/elasticsearch/vendor/ruflin/elastica/src/Exception/
H A DConnectionException.php23 protected $_response; variable in Elastica\\Exception\\ConnectionException
31 $this->_response = $response;
53 return $this->_response;
H A DResponseException.php23 protected $_response; variable in Elastica\\Exception\\ResponseException
31 $this->_response = $response;
52 return $this->_response;
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DNullTransport.php25 protected $_response; variable in Elastica\\Transport\\NullTransport
34 return $this->_response ?? $this->generateDefaultResponse($params);
44 $this->_response = $response;
/plugin/elasticsearch/vendor/ruflin/elastica/src/Index/
H A DRecovery.php23 protected $_response; variable in Elastica\\Index\\Recovery
67 return $this->_response;
99 $this->_response = $this->getIndex()->requestEndpoint($endpoint);
H A DStats.php22 protected $_response; variable in Elastica\\Index\\Stats
93 return $this->_response;
101 $this->_response = $this->getIndex()->requestEndpoint(new \Elasticsearch\Endpoints\Indices\Stats());
H A DSettings.php38 protected $_response;
36 protected $_response; global() variable in Elastica\\Index\\Settings
/plugin/elasticsearch/vendor/ruflin/elastica/src/Exception/Bulk/Response/
H A DActionException.php14 protected $_response; variable in Elastica\\Exception\\Bulk\\Response\\ActionException
18 $this->_response = $response;
30 return $this->_response;
/plugin/elasticsearch/vendor/ruflin/elastica/src/Multi/
H A DResultSet.php33 protected $_response; variable in Elastica\\Multi\\ResultSet
40 $this->_response = $response;
59 return $this->_response;
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md717 - Changed visibility from protected to private Elastica\ResultSet::$_response as accessing this property in an extended class is deprecated.