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
3declare(strict_types=1);
4
5namespace Icawebdesign\Hibp\Paste;
6
7use Icawebdesign\Hibp\HibpHttp;
8use Illuminate\Support\Collection;
9
10interface 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}