Collator::compare()

bool|int compare(string $str1, string $str2) Not supported. Compare two Unicode strings. Parameters string $str1 The first string to compare string $str2 The second string to compare Return Value bool|int Return the comparison result or false on failure: 1 if $str1 is greater than $str2 0 if $str1 is equal than $str2 -1 if $str1 is less than $str2 Exceptions MethodNotImplementedException See also http://www.php.net/manual/en/collator.compare.php

PropertyAccessorBuilder::getPropertyAccessor()

PropertyAccessorInterface getPropertyAccessor() Builds and returns a new PropertyAccessor object. Return Value PropertyAccessorInterface The built PropertyAccessor

DumperCollection::hasAttribute()

bool hasAttribute(string $name) Returns true if the attribute is defined. Parameters string $name The attribute name Return Value bool true if the attribute is defined, false otherwise

FormConfigInterface::getModelTransformers()

DataTransformerInterface[] getModelTransformers() Returns the model transformers of the form. Return Value DataTransformerInterface[] An array of {@link DataTransformerInterface} instances

Validator deprecated::validateProperty()

ConstraintViolationListInterface validateProperty(mixed $containingValue, string $property, array|null $groups = null) Validates a property of a value against its current value. The accepted values depend on the {@link MetadataFactoryInterface} implementation. Parameters mixed $containingValue The value containing the property. string $property The name of the property to validate. array|null $groups The validation groups to validate. Return Value ConstraintViolationListInterf

Bundle\FrameworkBundle

Namespaces Symfony\Bundle\FrameworkBundle\CacheWarmerSymfony\Bundle\FrameworkBundle\CommandSymfony\Bundle\FrameworkBundle\ConsoleSymfony\Bundle\FrameworkBundle\ControllerSymfony\Bundle\FrameworkBundle\DataCollectorSymfony\Bundle\FrameworkBundle\DependencyInjectionSymfony\Bundle\FrameworkBundle\EventListenerSymfony\Bundle\FrameworkBundle\FragmentSymfony\Bundle\FrameworkBundle\HttpCacheSymfony\Bundle\FrameworkBundle\RoutingSymfony\Bundle\FrameworkBundle\TemplatingSymfony\Bundle\FrameworkBundle\T

Application::register()

Command register(string $name) Registers a new command. Parameters string $name The command name Return Value Command The newly created command

OutputFormatterStyleStack

class OutputFormatterStyleStack Methods __construct(OutputFormatterStyleInterface $emptyStyle = null) Constructor. reset() Resets stack (ie. empty internal arrays). push(OutputFormatterStyleInterface $style) Pushes a style in the stack. OutputFormatterStyleInterface pop(OutputFormatterStyleInterface $style = null) Pops a style from the stack. OutputFormatterStyle getCurrent() Computes current style with stacks top codes. OutputFormatterStyleStack setEmptyStyle(Outp

PseudoClassExtension::translateLastOfType()

XPathExpr translateLastOfType(XPathExpr $xpath) Parameters XPathExpr $xpath Return Value XPathExpr Exceptions ExpressionErrorException

Form::submit()

FormInterface submit(null|string|array $submittedData, bool $clearMissing = true) Submits data to the form, transforms and validates it. Parameters null|string|array $submittedData The submitted data bool $clearMissing Whether to set fields to NULL when they are missing in the submitted data. Return Value FormInterface The form instance Exceptions AlreadySubmittedException If the form has already been submitted.