NumberFormatter::getAttribute()

bool|int getAttribute(int $attr) Returns an attribute value. Parameters int $attr An attribute specifier, one of the numeric attribute constants Return Value bool|int The attribute value on success or false on error See also http://www.php.net/manual/en/numberformatter.getattribute.php

NodeDefinition::defaultNull()

NodeDefinition|$this defaultNull() Sets null as the default value. Return Value NodeDefinition|$this

MongoDbSessionHandler::read()

read($sessionId) {@inheritdoc} Parameters $sessionId

FormConfigBuilder::setMapped()

FormConfigBuilderInterface setMapped(bool $mapped) Sets whether the form should be mapped to an element of its parent's data. Parameters bool $mapped Whether the form should be mapped Return Value FormConfigBuilderInterface The configuration object

OptionsResolver::setAllowedValues()

OptionsResolver setAllowedValues(string $option, mixed $allowedValues) Sets allowed values for an option. Instead of passing values, you may also pass a closures with the following signature: function ($value) { // return true or false } The closure receives the value as argument and should return true to accept the value and false to reject the value. Parameters string $option The option name mixed $allowedValues One or more acceptable values/closures Return Value Option

Tokenizer

class Tokenizer CSS selector tokenizer. This component is a port of the Python cssselect library, which is copyright Ian Bicking, see https://github.com/SimonSapin/cssselect. Methods __construct() Constructor. TokenStream tokenize(Reader $reader) Tokenize selector source code. Details __construct() Constructor. TokenStream tokenize(Reader $reader) Tokenize selector source code. Parameters Reade

LoaderInterface

interface LoaderInterface LoaderInterface is the interface all loaders must implement. Methods Storage|bool load(TemplateReferenceInterface $template) Loads a template. bool isFresh(TemplateReferenceInterface $template, int $time) Returns true if the template is still fresh. Details Storage|bool load(TemplateReferenceInterface $template) Loads a template. Parameters TemplateReferenceInterface $template A template Return Value Storage|bo

SymfonyTestsListener::startTestSuite()

startTestSuite(PHPUnit_Framework_TestSuite $suite) Parameters PHPUnit_Framework_TestSuite $suite

LoggingFormatter::formatUpdateReference()

formatUpdateReference(CompilerPassInterface $pass, $serviceId, $oldDestId, $newDestId) Parameters CompilerPassInterface $pass $serviceId $oldDestId $newDestId

FormConfigInterface::getCompound()

bool getCompound() Returns whether the form is compound. This property is independent of whether the form actually has children. A form can be compound and have no children at all, like for example an empty collection form. Return Value bool Whether the form is compound