diff options
Diffstat (limited to 'vendor/league/html-to-markdown/src/ConfigurationAwareInterface.php')
-rw-r--r-- | vendor/league/html-to-markdown/src/ConfigurationAwareInterface.php | 11 |
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); +} |