for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CHStudio\Raven\Http\Factory\Resolver;
class PassThroughValueResolver implements ValueResolverInterface
{
public function resolve(mixed $value): mixed
return $value;
}