for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace FRZB\Component\RequestMapper\Mapper;
use Symfony\Component\DependencyInjection\Attribute\AutoconfigureTag;
#[AutoconfigureTag(MapperInterface::class)]
class EmptyMapper implements MapperInterface
{
public function __invoke(string $typeName, mixed $value = null, array $parameters = []): mixed
return null;
}
public function canMap(string $typeName, mixed $value = null): bool
return true;
public static function getPriority(): int
return 0;