ImmutableEventDispatcher::addListener()

addListener(string $eventName, callable $listener, int $priority) Adds an event listener that listens on the specified events. Parameters string $eventName The event to listen on callable $listener The listener int $priority The higher this value, the earlier an event listener will be triggered in the chain (defaults to 0)

ValidatorInterface deprecated::validatePropertyValue()

ConstraintViolationListInterface validatePropertyValue(mixed $containingValue, string $property, string $value, array|null $groups = null) Validate a property of a value against a potential 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 string $value The value to validate against the constraints of the property. a

DoctrineCache::read()

ClassMetadata|false read(string $class) Returns the metadata for the given class from the cache Parameters string $class Class Name Return Value ClassMetadata|false A ClassMetadata instance or false on miss

SymfonyTestsListener

class SymfonyTestsListener extends PHPUnit_Framework_BaseTestListener Collects and replays skipped tests. Methods __construct(array $mockedNamespaces = array()) __destruct() startTestSuite(PHPUnit_Framework_TestSuite $suite) addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) startTest(PHPUnit_Framework_Test $test) endTest(PHPUnit_Framework_Test $test, $time) Details __construct(array $mockedNamespaces = array(

ParsedExpression

class ParsedExpression extends Expression Represents an already parsed expression. Methods __construct(string $expression, Node $nodes) Constructor. string __toString() Gets the expression. from Expression getNodes() Details __construct(string $expression, Node $nodes) Constructor. Parameters string $expression An expression Node $nodes A Node representing the expression string __toString()

FormTypeInterface::finishView()

finishView(FormView $view, FormInterface $form, array $options) Finishes the form view. This method gets called for each type in the hierarchy starting from the top most type. Type extensions can further modify the view. When this method is called, views of the form's children have already been built and finished and can be accessed. You should only implement such logic in this method that actually accesses child views. For everything else you are recommended to implement {@link buil

IntlGlobals::setError()

static setError(int $code, string $message = '') Sets the current error. Parameters int $code One of the error constants in this class string $message The ICU class error message Exceptions InvalidArgumentException If the code is not one of the error constants in this class

UnaryNode::compile()

compile(Compiler $compiler) Parameters Compiler $compiler

OrderedHashMap::offsetSet()

offsetSet($key, $value) {@inheritdoc} Parameters $key $value

Parser

class Parser implements ParserInterface CSS selector parser. This component is a port of the Python cssselect library, which is copyright Ian Bicking, see https://github.com/SimonSapin/cssselect. Methods __construct(Tokenizer $tokenizer = null) Constructor. SelectorNode[] parse(string $source) Parses given selector source into an array of tokens. static array parseSeries(array $tokens) Parses the arguments for ":nth-child()" and friends. Details