fatcode/hydration

View on GitHub
src/Type/CompositeType.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types=1);

namespace FatCode\Hydration\Type;

interface CompositeType extends NullableType
{
    public function getKeys(string $prefix) : array;
}