summaryrefslogtreecommitdiff
path: root/vendor/php-http/discovery/src/Strategy/DiscoveryStrategy.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/php-http/discovery/src/Strategy/DiscoveryStrategy.php')
-rw-r--r--vendor/php-http/discovery/src/Strategy/DiscoveryStrategy.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/php-http/discovery/src/Strategy/DiscoveryStrategy.php b/vendor/php-http/discovery/src/Strategy/DiscoveryStrategy.php
new file mode 100644
index 000000000..1eadb145b
--- /dev/null
+++ b/vendor/php-http/discovery/src/Strategy/DiscoveryStrategy.php
@@ -0,0 +1,23 @@
+<?php
+
+namespace Http\Discovery\Strategy;
+
+use Http\Discovery\Exception\StrategyUnavailableException;
+
+/**
+ * @author Tobias Nyholm <[email protected]>
+ */
+interface DiscoveryStrategy
+{
+ /**
+ * Find a resource of a specific type.
+ *
+ * @param string $type
+ *
+ * @return array The return value is always an array with zero or more elements. Each
+ * element is an array with two keys ['class' => string, 'condition' => mixed].
+ *
+ * @throws StrategyUnavailableException if we cannot use this strategy
+ */
+ public static function getCandidates($type);
+}