summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Cluster/Health
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ruflin/elastica/lib/Elastica/Cluster/Health')
-rw-r--r--vendor/ruflin/elastica/lib/Elastica/Cluster/Health/Index.php13
-rw-r--r--vendor/ruflin/elastica/lib/Elastica/Cluster/Health/Shard.php13
2 files changed, 8 insertions, 18 deletions
diff --git a/vendor/ruflin/elastica/lib/Elastica/Cluster/Health/Index.php b/vendor/ruflin/elastica/lib/Elastica/Cluster/Health/Index.php
index c39e94c3..ef55bd00 100644
--- a/vendor/ruflin/elastica/lib/Elastica/Cluster/Health/Index.php
+++ b/vendor/ruflin/elastica/lib/Elastica/Cluster/Health/Index.php
@@ -1,27 +1,22 @@
<?php
-
namespace Elastica\Cluster\Health;
/**
* Wraps status information for an index.
*
- * @package Elastica
* @author Ray Ward <ray.ward@bigcommerce.com>
- * @link http://www.elasticsearch.org/guide/reference/api/admin-cluster-health.html
+ *
+ * @link http://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-health.html
*/
class Index
{
/**
- * The name of the index.
- *
- * @var string
+ * @var string The name of the index.
*/
protected $_name;
/**
- * The index health data.
- *
- * @var array
+ * @var array The index health data.
*/
protected $_data;
diff --git a/vendor/ruflin/elastica/lib/Elastica/Cluster/Health/Shard.php b/vendor/ruflin/elastica/lib/Elastica/Cluster/Health/Shard.php
index a5da08ae..e1d2c8dc 100644
--- a/vendor/ruflin/elastica/lib/Elastica/Cluster/Health/Shard.php
+++ b/vendor/ruflin/elastica/lib/Elastica/Cluster/Health/Shard.php
@@ -1,27 +1,22 @@
<?php
-
namespace Elastica\Cluster\Health;
/**
* Wraps status information for a shard.
*
- * @package Elastica
* @author Ray Ward <ray.ward@bigcommerce.com>
- * @link http://www.elasticsearch.org/guide/reference/api/admin-cluster-health.html
+ *
+ * @link http://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-health.html
*/
class Shard
{
/**
- * The shard index/number.
- *
- * @var int
+ * @var int The shard index/number.
*/
protected $_shardNumber;
/**
- * The shard health data.
- *
- * @var array
+ * @var array The shard health data.
*/
protected $_data;