wallabag/src/SiteConfig/SiteConfigBuilder.php
2024-02-23 07:42:48 +01:00

18 lines
347 B
PHP

<?php
namespace Wallabag\SiteConfig;
interface SiteConfigBuilder
{
/**
* Builds the SiteConfig for a host.
*
* @param string $host The "www." prefix is ignored.
*
* @throws \OutOfRangeException If there is no config for $host
*
* @return SiteConfig|false
*/
public function buildForHost($host);
}