| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace Elasticsearch\Endpoints;
- /**
- * Class Info
- *
- * @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 Info extends AbstractEndpoint
- {
- /**
- * @return string
- */
- public function getURI()
- {
- $uri = "/";
- return $uri;
- }
- /**
- * @return string[]
- */
- public function getParamWhitelist()
- {
- return array(
- );
- }
- /**
- * @return string
- */
- public function getMethod()
- {
- return 'GET';
- }
- }
|