blob: 8aca530be94a3fd15f1f4e6a9c9f241eea8628bd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
namespace League\HTMLToMarkdown;
interface ConfigurationAwareInterface
{
/**
* @param Configuration $config
*/
public function setConfig(Configuration $config);
}
|