]> git.mxchange.org Git - friendica.git/blob - vendor/league/html-to-markdown/src/ConfigurationAwareInterface.php
Move HTML to Markdown library to Composer
[friendica.git] / vendor / league / html-to-markdown / src / ConfigurationAwareInterface.php
1 <?php
2
3 namespace League\HTMLToMarkdown;
4
5 interface ConfigurationAwareInterface
6 {
7     /**
8      * @param Configuration $config
9      */
10     public function setConfig(Configuration $config);
11 }