Code Coverage
 
Lines
Branches
Paths
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace Celemas\Quma;
6
7/** @api */
8interface Hydratable
9{
10    /** @param array<string, mixed> $row */
11    public static function fromRow(array $row): static;
12}