Guides
Tutorials
interface ApiPlatform\Api\UriVariableTransformerInterface
{
public transform($value, array $types, array $context)
public supportsTransformation($value, array $types, array $context): bool
}
interface ApiPlatform\Api\UriVariableTransformerInterface
{
public transform($value, array $types, array $context)
public supportsTransformation($value, array $types, array $context): bool
}
Transforms the value of a URI variable (identifier) to its type.
public transform($value, array $types, array $context)
public transform($value, array $types, array $context)
value | The URI variable value to transform | |
types | array | The guessed type behind the URI variable |
context | array | Options available to the transformer |
Checks whether the value of a URI variable can be transformed to its type by this transformer.
public supportsTransformation($value, array $types, array $context): bool
public supportsTransformation($value, array $types, array $context): bool
value | The URI variable value to transform | |
types | array | The types to which the URI variable value should be transformed |
context | array | Options available to the transformer |
bool