mirror of
https://github.com/friendica/friendica
synced 2025-02-15 04:14:00 +00:00
12 lines
189 B
PHP
12 lines
189 B
PHP
|
<?php
|
||
|
|
||
|
namespace League\HTMLToMarkdown;
|
||
|
|
||
|
interface ConfigurationAwareInterface
|
||
|
{
|
||
|
/**
|
||
|
* @param Configuration $config
|
||
|
*/
|
||
|
public function setConfig(Configuration $config);
|
||
|
}
|