php-tempmailbuster/src/LoaderInterface.php
ErickSkrauch 7b82e48cdd Static Loader class was refactored into AntiTempmailRepo class.
Added LoaderInterface.
Added fromLoader creator for Storage.
2016-04-29 01:53:51 +03:00

13 lines
203 B
PHP

<?php
namespace Ely\TempMailBuster;
interface LoaderInterface
{
/**
* Load data from some source and return array with strings
*
* @return array
*/
public function load();
}