for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace JMS\Serializer\Exception;
use function get_debug_type;
final class NonVisitableTypeException extends RuntimeException
{
/**
* @param mixed $data
* @param array{name: string}> $type
*/
public static function fromDataAndType($data, array $type, ?RuntimeException $previous = null)
return new self(
sprintf('Type %s cannot be visited as %s', get_debug_type($data), $type['name']),
0,
$previous
);
}