mirror of
https://github.com/elyby/php-tempmailbuster.git
synced 2025-02-18 00:08:06 +05:30
13 lines
203 B
PHP
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();
|
|
}
|