mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-06 14:04:24 +08:00
13 lines
222 B
PHP
13 lines
222 B
PHP
|
<?php
|
||
|
|
||
|
namespace RainLoop\Providers\Domain;
|
||
|
|
||
|
interface DomainSimpleInterface extends DomainInterface
|
||
|
{
|
||
|
/**
|
||
|
* @param string $sName
|
||
|
*
|
||
|
* @return \RainLoop\Domain | null
|
||
|
*/
|
||
|
public function Load($sName);
|
||
|
}
|