aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/league/html-to-markdown/src/ConfigurationAwareInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/league/html-to-markdown/src/ConfigurationAwareInterface.php')
-rw-r--r--vendor/league/html-to-markdown/src/ConfigurationAwareInterface.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/league/html-to-markdown/src/ConfigurationAwareInterface.php b/vendor/league/html-to-markdown/src/ConfigurationAwareInterface.php
new file mode 100644
index 000000000..8aca530be
--- /dev/null
+++ b/vendor/league/html-to-markdown/src/ConfigurationAwareInterface.php
@@ -0,0 +1,11 @@
+<?php
+
+namespace League\HTMLToMarkdown;
+
+interface ConfigurationAwareInterface
+{
+ /**
+ * @param Configuration $config
+ */
+ public function setConfig(Configuration $config);
+}