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 Jsonable
8{
9    public function toJson(): string;
10}