for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Stratadox\Hydration\Mapping\Property\Dynamic;
use Closure;
use Stratadox\Hydration\Mapping\ClosureMapping;
use Stratadox\HydrationMapping\Mapping;
/** @deprecated */
final class ClosureResult
{
public static function inProperty(string $name, Closure $function): Mapping
return ClosureMapping::inProperty($name, $function);
}