This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
Files
core/vendor/league/html-to-markdown/src/ConfigurationAwareInterface.php
2017-05-23 00:32:11 +02:00

12 lines
189 B
PHP

<?php
namespace League\HTMLToMarkdown;
interface ConfigurationAwareInterface
{
/**
* @param Configuration $config
*/
public function setConfig(Configuration $config);
}