FragmentListener::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

InitAclCommand

class InitAclCommand extends ContainerAwareCommand Installs the tables required by the ACL system. 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 A

AdapterInterface::getEntryManager()

EntryManagerInterface getEntryManager() Fetches the entry manager instance. Return Value EntryManagerInterface

AttributeMetadata::addGroup()

addGroup(string $group) Adds this attribute to the given group. Parameters string $group

RequestStack::pop()

Request|null pop() Pops the current request from the stack. This operation lets the current request go out of scope. This method should generally not be called directly as the stack management should be taken care of by the application itself. Return Value Request|null

Serializer::denormalize()

object denormalize(mixed $data, $type, string $format = null, array $context = array()) Denormalizes data back into an object of the given class. Parameters mixed $data data to restore $type string $format format the given data was extracted from array $context options available to the denormalizer Return Value object

LoaderChain

class LoaderChain implements LoaderInterface Calls multiple {@link LoaderInterface} instances in a chain. This class accepts multiple instances of LoaderInterface to be passed to the constructor. When {@link loadClassMetadata()} is called, the same method is called in all of these loaders, regardless of whether any of them was successful or not. Methods __construct(array $loaders) Accepts a list of LoaderInterface instances. bool loadClassMetadata(ClassMetadataInterface $metadata) L

TranslatorListener::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

ClassMetadata::getAttributesMetadata()

AttributeMetadataInterface[] getAttributesMetadata() Gets the list of {@link AttributeMetadataInterface}. Return Value AttributeMetadataInterface[]

OutputFormatterInterface::isDecorated()

bool isDecorated() Gets the decorated flag. Return Value bool true if the output will decorate messages, false otherwise