SecurityDataCollector::getRoles()

array getRoles() Gets the roles of the user. Return Value array The roles

LocaleDataProvider::getLocales()

getLocales()

ChainEncoder::supportsEncoding()

bool supportsEncoding(string $format) Checks whether the serializer can encode to given format. Parameters string $format format name Return Value bool

TokenInterface::eraseCredentials()

eraseCredentials() Removes sensitive information from the token.

FormConfigInterface::getMethod()

string getMethod() Returns the HTTP method used by the form. Return Value string The HTTP method of the form

AbstractToken::setAttribute()

setAttribute(string $name, mixed $value) Sets an attribute. Parameters string $name The attribute name mixed $value The attribute value

AssetExtension::getFunctions()

getFunctions() {@inheritdoc}

GenericEvent

class GenericEvent extends Event implements ArrayAccess, IteratorAggregate Event encapsulation class. Encapsulates events thus decoupling the observer from the subject they encapsulate. Methods bool isPropagationStopped() Returns whether further event listeners should be triggered. from Event stopPropagation() Stops the propagation of the event to further event listeners. from Event __construct(mixed $subject = null, array $arguments = array()) Encapsulate an event with $subject

ObjectChoiceList deprecated

class ObjectChoiceList extends ChoiceList deprecated since Symfony 2.7, to be removed in version 3.0. Use {@link \Symfony\Component\Form\ChoiceList\ArrayChoiceList} instead. A choice list for object choices. Supports generation of choice labels, choice groups and choice values by calling getters of the object (or associated objects). $choices = array($user1, $user2); // call getName() to determine the choice labels $choiceList = new ObjectChoiceList($choices, 'name'); Methods __con

Input

class Input implements InputInterface Input is the base class for all concrete Input classes. Three concrete classes are provided by default: ArgvInput: The input comes from the CLI arguments (argv) StringInput: The input is provided as a string ArrayInput: The input is provided as an array Methods __construct(InputDefinition $definition = null) Constructor. bind(InputDefinition $definition) Binds the current Input instance with the given arguments and options. validate() Va