Lines
n/a
0 / 0
Functions and Methods
n/a
0 / 0
Classes and Traits
n/a
0 / 0
| Name | Lines | Functions and Methods | CRAP | Classes and Traits | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| 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 | } |