DumpDataCollectorPass

class DumpDataCollectorPass implements CompilerPassInterface Registers the file link format for the {@link \Symfony\Component\HttpKernel\DataCollector\DumpDataCollector}. Methods process(ContainerBuilder $container) You can modify the container here before it is dumped to PHP code. Details process(ContainerBuilder $container) You can modify the container here before it is dumped to PHP code. Parameters ContainerBuilder $container

PersistentTokenInterface::getTokenValue()

string getTokenValue() Returns the token value. Return Value string

ExecutionContextInterface::getValidator()

ValidatorInterface getValidator() Returns the validator. Useful if you want to validate additional constraints: public function validate($value, Constraint $constraint) { $validator = $this->context->getValidator(); $violations = $validator->validateValue($value, new Length(array('min' => 3))); if (count($violations) > 0) { // ... } } Return Value ValidatorInterface

GuardAuthenticatorHandler::handleAuthenticationSuccess()

null|Response handleAuthenticationSuccess(TokenInterface $token, Request $request, GuardAuthenticatorInterface $guardAuthenticator, string $providerKey) Returns the "on success" response for the given GuardAuthenticator. Parameters TokenInterface $token Request $request GuardAuthenticatorInterface $guardAuthenticator string $providerKey The provider (i.e. firewall) key Return Value null|Response

Input::getOptions()

array getOptions() Returns all the given options merged with the default values. Return Value array

RedisProfilerStorage deprecated::setRedis()

setRedis(Redis $redis) Set instance of the Redis. Parameters Redis $redis

Input::isInteractive()

bool isInteractive() Is this input means interactive? Return Value bool

MessageCatalogueInterface::all()

array all(string $domain = null) Gets the messages within a given domain. If $domain is null, it returns all messages. Parameters string $domain The domain name Return Value array An array of messages

ChoiceListInterface deprecated::getValuesForChoices()

array getValuesForChoices(array $choices) Returns the values corresponding to the given choices. The values must be strings. The values must be returned with the same keys and in the same order as the corresponding choices in the given array. Parameters array $choices An array of choices. Not existing choices in this array are ignored Return Value array An array of choice values with ascending, 0-based numeric keys

PassConfig::getMergePass()

CompilerPassInterface getMergePass() Gets the Merge pass. Return Value CompilerPassInterface The merge pass