forked from wallabag/wallabag
Move source files directly under src/ directory
This commit is contained in:
17
src/SiteConfig/SiteConfigBuilder.php
Normal file
17
src/SiteConfig/SiteConfigBuilder.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace Wallabag\CoreBundle\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);
|
||||
}
|
||||
Reference in New Issue
Block a user