summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Connection/Strategy/Simple.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ruflin/elastica/lib/Elastica/Connection/Strategy/Simple.php')
-rw-r--r--vendor/ruflin/elastica/lib/Elastica/Connection/Strategy/Simple.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/vendor/ruflin/elastica/lib/Elastica/Connection/Strategy/Simple.php b/vendor/ruflin/elastica/lib/Elastica/Connection/Strategy/Simple.php
new file mode 100644
index 00000000..7c42dd3b
--- /dev/null
+++ b/vendor/ruflin/elastica/lib/Elastica/Connection/Strategy/Simple.php
@@ -0,0 +1,30 @@
+<?php
+namespace Elastica\Connection\Strategy;
+
+use Elastica\Exception\ClientException;
+
+/**
+ * Description of SimpleStrategy.
+ *
+ * @author chabior
+ */
+class Simple implements StrategyInterface
+{
+ /**
+ * @param array|\Elastica\Connection[] $connections
+ *
+ * @throws \Elastica\Exception\ClientException
+ *
+ * @return \Elastica\Connection
+ */
+ public function getConnection($connections)
+ {
+ foreach ($connections as $connection) {
+ if ($connection->isEnabled()) {
+ return $connection;
+ }
+ }
+
+ throw new ClientException('No enabled connection');
+ }
+}