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

Route::setPath()

setPath($path) Parameters $path

AssetExtension::getFunctions()

getFunctions() {@inheritdoc}

RouterMatchCommand

class RouterMatchCommand extends ContainerAwareCommand A console command to test route matching. Methods __construct(string|null $name = null) Constructor. from Command ignoreValidationErrors() Ignores validation errors. from Command setApplication(Application $application = null) Sets the application instance for this command. from Command setHelperSet(HelperSet $helperSet) Sets the helper set. from Command HelperSet getHelperSet() Gets the helper set. from Command App

AbstractToken::setAttribute()

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

FormConfigInterface::getMethod()

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

PathPackage::getBasePath()

string getBasePath() Returns the base path. Return Value string The base path

ExecutionContext deprecated

class ExecutionContext implements ExecutionContextInterface deprecated since version 2.5, to be removed in 3.0. Use {@link Context\ExecutionContext} instead. Default implementation of {@link ExecutionContextInterface}. This class is immutable by design. Methods __construct(GlobalExecutionContextInterface $globalContext, TranslatorInterface $translator, null|string $translationDomain = null, MetadataInterface $metadata = null, mixed $value = null, string $group = null, string $propert

ParameterBag::has()

bool has(string $key) Returns true if the parameter is defined. Parameters string $key The key Return Value bool true if the parameter exists, false otherwise

RequestDataCollector::getSubscribedEvents()

static array getSubscribedEvents() Returns an array of event names this subscriber wants to listen to. The array keys are event names and the value can be: The method name to call (priority defaults to 0) An array composed of the method name to call and the priority An array of arrays composed of the method names to call and respective priorities, or 0 if unset For instance: array('eventName' => 'methodName') array('eventName' => array('methodName', $priority)) a