aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/league/html-to-markdown/src/ConfigurationAwareInterface.php
blob: 50c004c4a86aa2520ae7bad174040514b832d2c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<?php

declare(strict_types=1);

namespace League\HTMLToMarkdown;

interface ConfigurationAwareInterface
{
    public function setConfig(Configuration $config): void;
}