Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Icawebdesign\Hibp\Paste; |
| 6 | |
| 7 | use Icawebdesign\Hibp\HibpHttp; |
| 8 | use Illuminate\Support\Collection; |
| 9 | |
| 10 | interface PasteInterface |
| 11 | { |
| 12 | public function __construct(HibpHttp $hibpHttp); |
| 13 | |
| 14 | /** |
| 15 | * @param string $emailAddress |
| 16 | * @param array<string, mixed> $options |
| 17 | * |
| 18 | * @return Collection<int, PasteEntity> |
| 19 | */ |
| 20 | public function lookup(string $emailAddress, array $options = []): Collection; |
| 21 | } |