summaryrefslogtreecommitdiff
path: root/vendor/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php')
-rw-r--r--vendor/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/vendor/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php b/vendor/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php
new file mode 100644
index 0000000..321d718
--- /dev/null
+++ b/vendor/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php
@@ -0,0 +1,27 @@
+<?php
+
+namespace Guzzle\Inflection;
+
+/**
+ * Inflector interface used to convert the casing of words
+ */
+interface InflectorInterface
+{
+ /**
+ * Converts strings from camel case to snake case (e.g. CamelCase camel_case).
+ *
+ * @param string $word Word to convert to snake case
+ *
+ * @return string
+ */
+ public function snake($word);
+
+ /**
+ * Converts strings from snake_case to upper CamelCase
+ *
+ * @param string $word Value to convert into upper CamelCase
+ *
+ * @return string
+ */
+ public function camel($word);
+}