FormConfigInterface::getAttribute()

mixed getAttribute(string $name, mixed $default = null) Returns the value of the given attribute. Parameters string $name The attribute name mixed $default The value returned if the attribute does not exist Return Value mixed The attribute value

Entry::setAttribute()

setAttribute(string $name, array $value) Sets a value for the given attribute. Parameters string $name array $value

Crawler::extract()

array extract(array $attributes) Extracts information from the list of nodes. You can extract attributes or/and the node value (_text). Example: $crawler->filter('h1 a')->extract(array('_text', 'href')); Parameters array $attributes An array of attributes Return Value array An array of extracted values

PropertyInfoCacheExtractor::isWritable()

bool|null isWritable(string $class, string $property, array $context = array()) Is the property writable? Parameters string $class string $property array $context Return Value bool|null

UsernamePasswordToken::setAuthenticated()

setAuthenticated($isAuthenticated) Sets the authenticated flag. Parameters $isAuthenticated

MemcacheSessionHandler::write()

write($sessionId, $data) {@inheritdoc} Parameters $sessionId $data

SessionStorageInterface::setName()

setName(string $name) Sets the session name. Parameters string $name

AccessDeniedException

class AccessDeniedException extends UnexpectedValueException

FormFieldRegistry::add()

add(FormField $field) Adds a field to the registry. Parameters FormField $field The field

Entry::getAttribute()

null|array getAttribute($name) Returns a specific attribute's value. As LDAP can return multiple values for a single attribute, this value is returned as an array. Parameters $name string The name of the attribute Return Value null|array