AttributeMetadata::getName()

string getName() Gets the attribute name. Return Value string

StyleInterface::caution()

caution(string|array $message) Formats a caution admonition. Parameters string|array $message

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

TableStyle::getVerticalBorderChar()

string getVerticalBorderChar() Gets vertical border character. Return Value string

SsiFragmentRenderer

class SsiFragmentRenderer extends AbstractSurrogateFragmentRenderer Implements the SSI rendering strategy. Methods setFragmentPath(string $path) Sets the fragment path that triggers the fragment listener. from RoutableFragmentRenderer __construct(SurrogateInterface $surrogate = null, FragmentRendererInterface $inlineStrategy, UriSigner $signer = null) Constructor. from AbstractSurrogateFragmentRenderer Response render(string|ControllerReference $uri, Request $request, array $opti