Lines n/a 0 / 0
Functions and Methods n/a 0 / 0
Classes and Traits n/a 0 / 0
Covered by tests of size
Name Lines Functions and Methods CRAP Classes and Traits
1<?php
2
3declare(strict_types=1);
4
5namespace Icawebdesign\Hibp\Interfaces;
6
7interface Arrayable
8{
9    /**
10     * @return array<mixed, mixed>
11     */
12    public function toArray(): array;
13}