LogoutException

class LogoutException extends RuntimeException LogoutException is thrown when the account cannot be logged out. Methods __construct($message = 'Logout Exception', Exception $previous = null) Details __construct($message = 'Logout Exception', Exception $previous = null) Parameters $message Exception $previous

RecursiveContextualValidator::validatePropertyValue()

ContextualValidatorInterface validatePropertyValue(object|string $objectOrClass, string $propertyName, mixed $value, array|null $groups = null) Validates a value against the constraints specified for an object's property. Parameters object|string $objectOrClass The object or its class name string $propertyName The name of the property mixed $value The value to validate against the property's constraints array|null $groups The validation groups to validate. If none is given, "D

FormDataCollectorInterface::collectSubmittedData()

collectSubmittedData(FormInterface $form) Stores the submitted data of the given form and its children. Parameters FormInterface $form A root form

ValidatorTypeGuesser

class ValidatorTypeGuesser implements FormTypeGuesserInterface Methods __construct(MetadataFactoryInterface $metadataFactory) TypeGuess|null guessType(string $class, string $property) Returns a field guess for a property name of a class. ValueGuess guessRequired(string $class, string $property) Returns a guess whether a property of a class is required. ValueGuess|null guessMaxLength(string $class, string $property) Returns a guess about the field's maximum length. ValueG

Bundle::registerCommands()

registerCommands(Application $application) Finds and registers Commands. Override this method if your bundle commands do not follow the conventions: Commands are in the 'Command' sub-directory Commands extend Symfony\Component\Console\Command\Command Parameters Application $application An Application instance

Stopwatch::start()

StopwatchEvent start(string $name, string $category = null) Starts an event. Parameters string $name The event name string $category The event category Return Value StopwatchEvent A StopwatchEvent instance

DOMCaster::castNode()

static castNode(DOMNode $dom, array $a, Stub $stub, $isNested) Parameters DOMNode $dom array $a Stub $stub $isNested

Finder::append()

Finder|SplFileInfo[] append(mixed $iterator) Appends an existing set of files/directories to the finder. The set can be another Finder, an Iterator, an IteratorAggregate, or even a plain array. Parameters mixed $iterator Return Value Finder|SplFileInfo[] The finder Exceptions InvalidArgumentException When the given argument is not iterable.

User::getPassword()

string getPassword() Returns the password used to authenticate the user. This should be the encoded password. On authentication, a plain-text password will be salted, encoded, and then compared to this value. Return Value string The password

DataUriNormalizer::denormalize()

object denormalize(mixed $data, string $class, string $format = null, array $context = array()) Denormalizes data back into an object of the given class. Parameters mixed $data data to restore string $class the expected class to instantiate string $format format the given data was extracted from array $context options available to the denormalizer Return Value object See also https://gist.github.com/bgrins/6194623