ObjectInitializerInterface

interface ObjectInitializerInterface Prepares an object for validation. Concrete implementations of this interface are used by {@link ValidationVisitorInterface} to initialize objects just before validating them. Methods initialize(object $object) Initializes an object just before validation. Details initialize(object $object) Initializes an object just before validation. Parameters object $object The object to validate

FormTypeExtensionInterface

interface FormTypeExtensionInterface Methods buildForm(FormBuilderInterface $builder, array $options) Builds the form. buildView(FormView $view, FormInterface $form, array $options) Builds the view. finishView(FormView $view, FormInterface $form, array $options) Finishes the view. configureOptions(OptionsResolver $resolver) Configures the options for this type. string getExtendedType() Returns the name of the type being extended. Details

AttributeMatchingExtension

class AttributeMatchingExtension extends AbstractExtension XPath expression translator attribute extension. This component is a port of the Python cssselect library, which is copyright Ian Bicking, see https://github.com/SimonSapin/cssselect. Methods callable[] getNodeTranslators() Returns node translators. from AbstractExtension callable[] getCombinationTranslators() Returns combination translators. from AbstractExtension callable[] getFunctionTranslators() Returns function tran

InputInterface::hasOption()

bool hasOption(string $name) Returns true if an InputOption object exists by name. Parameters string $name The InputOption name Return Value bool true if the InputOption object exists, false otherwise

FormTypeValidatorExtension

class FormTypeValidatorExtension extends BaseValidatorExtension Methods buildForm(FormBuilderInterface $builder, array $options) Builds the form. buildView(FormView $view, FormInterface $form, array $options) Builds the view. from AbstractTypeExtension finishView(FormView $view, FormInterface $form, array $options) Finishes the view. from AbstractTypeExtension configureOptions(OptionsResolver $resolver) Configures the options for this type. __construct(ValidatorInterface

Route

class Route implements Serializable A Route describes a route and its parameters. Methods __construct(string $path, array $defaults = array(), array $requirements = array(), array $options = array(), string $host = '', string|array $schemes = array(), string|array $methods = array(), string $condition = '') Constructor. serialize() {@inheritdoc} unserialize($serialized) {@inheritdoc} string getPath() Returns the pattern for the path. Route setPath(string $pattern) Set

TokenStorageInterface::setToken()

setToken(TokenInterface $token = null) Sets the authentication token. Parameters TokenInterface $token A TokenInterface token, or null if no further authentication information should be stored

FrozenParameterBag::clear()

clear() Clears all parameters.

Response::getHeader()

string|array getHeader(string $header, bool $first = true) Gets a response header. Parameters string $header The header name bool $first Whether to return the first value or all header values Return Value string|array The first header value if $first is true, an array of values otherwise

ResolvedTypeDataCollectorProxy::getOptionsResolver()

OptionsResolver getOptionsResolver() Returns the configured options resolver used for this type. Return Value OptionsResolver The options resolver