���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/rickpfrv/drive.rickard.co/systemMYs/classes/vendor/Elasticsearch/Endpoints/Delete.php
���ѧ٧ѧ�
<?php namespace Elasticsearch\Endpoints; use Elasticsearch\Common\Exceptions; /** * Class Delete * * @category Elasticsearch * @package Elasticsearch\Endpoints * @author Zachary Tong <zach@elastic.co> * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 * @link http://elastic.co */ class Delete extends AbstractEndpoint { /** * @throws \Elasticsearch\Common\Exceptions\RuntimeException * @return string */ public function getURI() { if (isset($this->id) !== true) { throw new Exceptions\RuntimeException( 'id is required for Delete' ); } if (isset($this->index) !== true) { throw new Exceptions\RuntimeException( 'index is required for Delete' ); } if (isset($this->type) !== true) { throw new Exceptions\RuntimeException( 'type is required for Delete' ); } $id = $this->id; $index = $this->index; $type = $this->type; $uri = "/$index/$type/$id"; if (isset($index) === true && isset($type) === true && isset($id) === true) { $uri = "/$index/$type/$id"; } return $uri; } /** * @return string[] */ public function getParamWhitelist() { return array( 'consistency', 'parent', 'refresh', 'replication', 'routing', 'timeout', 'version', 'version_type', ); } /** * @return string */ public function getMethod() { return 'DELETE'; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 0.01 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�