for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ApiSkeletons\Doctrine\ORM\GraphQL\Hydrator\Strategy;
use Laminas\Hydrator\Strategy\StrategyInterface;
/**
* Return the same value
*/
class FieldDefault extends Collection implements
StrategyInterface
{
public function extract(mixed $value, object|null $object = null): mixed
return $value;
}
* @param mixed[]|null $data
*
* @codeCoverageIgnore
public function hydrate(mixed $value, array|null $data): mixed