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