summaryrefslogtreecommitdiffstats
path: root/wp-includes/Requests/src/Capability.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-includes/Requests/src/Capability.php')
-rw-r--r--wp-includes/Requests/src/Capability.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/wp-includes/Requests/src/Capability.php b/wp-includes/Requests/src/Capability.php
new file mode 100644
index 0000000..30572ba
--- /dev/null
+++ b/wp-includes/Requests/src/Capability.php
@@ -0,0 +1,36 @@
+<?php
+/**
+ * Capability interface declaring the known capabilities.
+ *
+ * @package Requests\Utilities
+ */
+
+namespace WpOrg\Requests;
+
+/**
+ * Capability interface declaring the known capabilities.
+ *
+ * This is used as the authoritative source for which capabilities can be queried.
+ *
+ * @package Requests\Utilities
+ */
+interface Capability {
+
+ /**
+ * Support for SSL.
+ *
+ * @var string
+ */
+ const SSL = 'ssl';
+
+ /**
+ * Collection of all capabilities supported in Requests.
+ *
+ * Note: this does not automatically mean that the capability will be supported for your chosen transport!
+ *
+ * @var string[]
+ */
+ const ALL = [
+ self::SSL,
+ ];
+}