PropertyPathBuilder::appendIndex()

appendIndex(string $name) Appends an index element to the current path. Parameters string $name The name of the appended index

BadCredentialsException

class BadCredentialsException extends AuthenticationException BadCredentialsException is thrown when the user credentials are invalid. Methods TokenInterface getToken() Get the token. from AuthenticationException setToken(TokenInterface $token) Set the token. from AuthenticationException serialize() from AuthenticationException unserialize($str) from AuthenticationException string getMessageKey() Message key to be used by the translation component. array getMessage

MethodArgumentValueNotImplementedException deprecated

class MethodArgumentValueNotImplementedException extends MethodArgumentValueNotImplementedException deprecated since version 2.3, to be removed in 3.0. Use {@link \Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException} instead. Alias of {@link \Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException}. Constants INTL_INSTALL_MESSAGE Methods __construct(string $methodName, string $argName, string $argValue, string $additionalMessage = '')

Firewall::onKernelFinishRequest()

onKernelFinishRequest(FinishRequestEvent $event) Parameters FinishRequestEvent $event

UnexpectedValueException

class UnexpectedValueException extends UnexpectedValueException implements ExceptionInterface UnexpectedValueException.

Table::setColumnWidths()

Table setColumnWidths(array $widths) Sets the minimum width of all columns. Parameters array $widths Return Value Table

AuthenticationCredentialsNotFoundException

class AuthenticationCredentialsNotFoundException extends AuthenticationException AuthenticationCredentialsNotFoundException is thrown when an authentication is rejected because no Token is available. Methods TokenInterface getToken() Get the token. from AuthenticationException setToken(TokenInterface $token) Set the token. from AuthenticationException serialize() from AuthenticationException unserialize($str) from AuthenticationException string getMessageKey() Message k

Process::getIncrementalErrorOutput()

string getIncrementalErrorOutput() Returns the errorOutput incrementally. In comparison with the getErrorOutput method which always return the whole error output, this one returns the new error output since the last call. Return Value string The process error output since the last call Exceptions LogicException in case the output has been disabled LogicException In case the process is not started

Process::setEnhanceWindowsCompatibility()

Process setEnhanceWindowsCompatibility(bool $enhance) Sets whether or not Windows compatibility is enabled. Parameters bool $enhance Return Value Process The current Process instance

OptionsResolver::setNormalizer()

OptionsResolver setNormalizer(string $option, Closure $normalizer) Sets the normalizer for an option. The normalizer should be a closure with the following signature: php function (Options $options, $value) { // ... } The closure is invoked when {@link resolve()} is called. The closure has access to the resolved values of other options through the passed {@link Options} instance. The second parameter passed to the closure is the value of the option. The resolved option value