���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/rickpfrv/drive.rickard.co/systemMYs/classes/vendor/Elasticsearch/Endpoints/Indices/Field/Get.php
���ѧ٧ѧ�
<?php namespace Elasticsearch\Endpoints\Indices\Field; use Elasticsearch\Endpoints\AbstractEndpoint; use Elasticsearch\Common\Exceptions; /** * Class Get * * @category Elasticsearch * @package Elasticsearch\Endpoints\Indices\Field * @author Zachary Tong <zach@elastic.co> * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 * @link http://elastic.co */ class Get extends AbstractEndpoint { // A comma-separated list of fields private $field; /** * @param $field * * @return $this */ public function setField($field) { if (isset($field) !== true) { return $this; } $this->field = $field; return $this; } /** * @throws \Elasticsearch\Common\Exceptions\RuntimeException * @return string */ public function getURI() { if (isset($this->field) !== true) { throw new Exceptions\RuntimeException( 'field is required for Get' ); } $index = $this->index; $type = $this->type; $field = $this->field; $uri = "/_mapping/field/$field"; if (isset($index) === true && isset($type) === true && isset($field) === true) { $uri = "/$index/_mapping/$type/field/$field"; } elseif (isset($type) === true && isset($field) === true) { $uri = "/_mapping/$type/field/$field"; } elseif (isset($index) === true && isset($field) === true) { $uri = "/$index/_mapping/field/$field"; } elseif (isset($field) === true) { $uri = "/_mapping/field/$field"; } return $uri; } /** * @return string[] */ public function getParamWhitelist() { return array( 'include_defaults', 'ignore_unavailable', 'allow_no_indices', 'expand_wildcards', 'local', ); } /** * @return string */ public function getMethod() { return 'GET'; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 0.21 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�