You are here

protected function ConstraintValidator::formatTypeOf in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/ConstraintValidator.php \Symfony\Component\Validator\ConstraintValidator::formatTypeOf()

Returns a string representation of the type of the value.

This method should be used if you pass the type of a value as message parameter to a constraint violation. Note that such parameters should usually not be included in messages aimed at non-technical people.

Parameters

mixed $value The value to return the type of:

Return value

string The type of the value

File

vendor/symfony/validator/ConstraintValidator.php, line 110

Class

ConstraintValidator
Base class for constraint validators.

Namespace

Symfony\Component\Validator

Code

protected function formatTypeOf($value) {
  return is_object($value) ? get_class($value) : gettype($value);
}