fatcode/hydration

View on GitHub
src/Extractor.php

Summary

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

namespace FatCode\Hydration;

interface Extractor
{
    public function extract(object $object) : array;
}