fatcode/hydration

View on GitHub
src/Hydrator.php

Summary

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

namespace FatCode\Hydration;

interface Hydrator
{
    public function hydrate(array $hash, $object) : object;
}