Token::isNumber()

bool isNumber() Return Value bool

Button::getConfig()

FormConfigInterface getConfig() Returns the button's configuration. Return Value FormConfigInterface The configuration

FormType::getParent()

string|null getParent() Returns the name of the parent type. Return Value string|null The name of the parent type if any, null otherwise

FormConfigBuilderInterface::resetViewTransformers()

FormConfigBuilderInterface resetViewTransformers() Clears the view transformers. Return Value FormConfigBuilderInterface The configuration object

MetadataInterface::findConstraints()

Constraint[] findConstraints(string $group) Returns all constraints for a given validation group. Parameters string $group The validation group Return Value Constraint[] A list of constraint instances

MetadataInterface::getTraversalStrategy()

int getTraversalStrategy() Returns the strategy for traversing traversable objects. Return Value int The traversal strategy See also TraversalStrategy

ExecutionContextInterface::getViolations()

ConstraintViolationListInterface getViolations() Returns the violations generated by the validator so far. Return Value ConstraintViolationListInterface The constraint violation list

ConfigDataCollector::hasXDebug()

bool hasXDebug() Returns true if the XDebug is enabled. Return Value bool true if XDebug is enabled, false otherwise

Component\Templating

Namespaces Symfony\Component\Templating\AssetSymfony\Component\Templating\HelperSymfony\Component\Templating\LoaderSymfony\Component\Templating\Storage Classes DelegatingEngine DelegatingEngine selects an engine for a given template. PhpEngine PhpEngine is an engine able to render PHP templates. TemplateNameParser TemplateNameParser is the default implementation of TemplateNameParserInterface. TemplateReference Internal representation of a template. Interfaces DebuggerInter

ExecutionContext::getObject()

object|null getObject() Returns the currently validated object. If the validator is currently validating a class constraint, the object of that class is returned. If it is a validating a property or getter constraint, the object that the property/getter belongs to is returned. In other cases, null is returned. Return Value object|null The currently validated object or null