Response::getEtag()

string|null getEtag() Returns the literal value of the ETag HTTP header. Return Value string|null The ETag HTTP header or null if it does not exist

DefinitionDecorator::setDecoratedService()

Definition setDecoratedService(null|string $id, null|string $renamedId = null, int $priority) Sets the service that this service is decorating. Parameters null|string $id The decorated service id, use null to remove decoration null|string $renamedId The new decorated service id int $priority The priority of decoration Return Value Definition The current instance Exceptions InvalidArgumentException In case the decorated service id and the new decorated service id are equals.

ArrayNode::setPerformDeepMerging()

setPerformDeepMerging(bool $boolean) Sets if deep merging should occur. Parameters bool $boolean

UrlMatcher::getContext()

RequestContext getContext() Gets the request context. Return Value RequestContext The context

PropelFactory::addConfiguration()

addConfiguration(NodeDefinition $node) Parameters NodeDefinition $node

MaskBuilder

class MaskBuilder This class allows you to build cumulative permissions easily, or convert masks to a human-readable format. $builder = new MaskBuilder(); $builder ->add('view') ->add('create') ->add('edit') ; vardump($builder->get()); // int(7) vardump($builder->getPattern()); // string(32) ".............................ECV" We have defined some commonly used base permissions which you can use: - VIEW: the S

Reference

class Reference Reference represents a service reference. Methods __construct(string $id, int $invalidBehavior = ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE) string __toString() int getInvalidBehavior() Returns the behavior to be used when the service does not exist. Details __construct(string $id, int $invalidBehavior = ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE) Parameters string $id The service identifier int $inv

FilterControllerArgumentsEvent::getArguments()

array getArguments() Return Value array

ExtensionInterface::getAttributeMatchingTranslators()

callable[] getAttributeMatchingTranslators() Returns attribute operation translators. Return Value callable[]

Application::setAutoExit()

setAutoExit(bool $boolean) Sets whether to automatically exit after a command execution or not. Parameters bool $boolean Whether to automatically exit after a command execution or not