ValueInterface::render()

string render() Renders string representation of expression. Return Value string

ValueInterface::prepend()

ValueInterface prepend(string $expr) Parameters string $expr Return Value ValueInterface

ValueInterface::isCaseSensitive()

bool isCaseSensitive() Returns value case sensitivity. Return Value bool

ValueInterface::getType()

int getType() Returns expression type. Return Value int

ValueInterface::append()

ValueInterface append(string $expr) Parameters string $expr Return Value ValueInterface

ValueInterface

interface ValueInterface Methods string render() Renders string representation of expression. string renderPattern() Renders string representation of pattern. bool isCaseSensitive() Returns value case sensitivity. int getType() Returns expression type. ValueInterface prepend(string $expr) ValueInterface append(string $expr) Details string render() Renders string representation of expression. Return Value string

ValueGuess

class ValueGuess extends Guess Contains a guessed value. Constants VERY_HIGH_CONFIDENCE Marks an instance with a value that is extremely likely to be correct. HIGH_CONFIDENCE Marks an instance with a value that is very likely to be correct. MEDIUM_CONFIDENCE Marks an instance with a value that is likely to be correct. LOW_CONFIDENCE Marks an instance with a value that may be correct. Methods static Guess|null getBestGuess(array $guesses) Returns the guess most likely to be

ValueExporter

class ValueExporter Methods string exportValue(mixed $value, int $depth = 1, bool $deep = false) Converts a PHP value to a string. Details string exportValue(mixed $value, int $depth = 1, bool $deep = false) Converts a PHP value to a string. Parameters mixed $value The PHP value int $depth only for internal usage bool $deep only for internal usage Return Value string The string representation of the given value

ValidatorTypeGuesser::guessTypeForConstraint()

TypeGuess|null guessTypeForConstraint(Constraint $constraint) Guesses a field class name for a given constraint. Parameters Constraint $constraint The constraint to guess for Return Value TypeGuess|null The guessed field class and options

ValidatorTypeGuesser::guessType()

TypeGuess|null guessType(string $class, string $property) Returns a field guess for a property name of a class. Parameters string $class The fully qualified class name string $property The name of the property to guess for Return Value TypeGuess|null A guess for the field's type and options