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\Interfaces; | |
| 6 | ||
| 7 | interface Arrayable | |
| 8 | { | |
| 9 | /** | |
| 10 | * @return array<mixed, mixed> | |
| 11 | */ | |
| 12 | public function toArray(): array; | |
| 13 | } |