DefaultAuthenticationFailureHandler::onAuthenticationFailure()

Response onAuthenticationFailure(Request $request, AuthenticationException $exception) This is called when an interactive authentication attempt fails. This is called by authentication listeners inheriting from AbstractAuthenticationListener. Parameters Request $request AuthenticationException $exception Return Value Response The response to return, never null

DefaultAuthenticationFailureHandler::getOptions()

array getOptions() Gets the options. Return Value array An array of options

DefaultAuthenticationFailureHandler

class DefaultAuthenticationFailureHandler implements AuthenticationFailureHandlerInterface Class with the default authentication failure handling logic. Can be optionally be extended from by the developer to alter the behaviour while keeping the default behaviour. Methods __construct(HttpKernelInterface $httpKernel, HttpUtils $httpUtils, array $options = array(), LoggerInterface $logger = null) Constructor. array getOptions() Gets the options. setOptions(array $options) Sets th

DecoratorServicePass

class DecoratorServicePass implements CompilerPassInterface Overwrites a service but keeps the overridden one. 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

DecoderInterface::supportsDecoding()

bool supportsDecoding(string $format) Checks whether the deserializer can decode from given format. Parameters string $format format name Return Value bool

DecoderInterface::decode()

mixed decode(string $data, string $format, array $context = array()) Decodes a string into PHP data. Parameters string $data Data to decode string $format Format name array $context options that decoders have access to The format parameter specifies which format the data is in; valid values depend on the specific implementation. Authors implementing this interface are encouraged to document which formats they support in a non-inherited phpdoc comment. Return Value mixed Excep

DecoderInterface

interface DecoderInterface Defines the interface of decoders. Methods mixed decode(string $data, string $format, array $context = array()) Decodes a string into PHP data. bool supportsDecoding(string $format) Checks whether the deserializer can decode from given format. Details mixed decode(string $data, string $format, array $context = array()) Decodes a string into PHP data. Parameters string $data Data to decode string $format Format

DebugUniversalClassLoader deprecated

class DebugUniversalClassLoader extends UniversalClassLoader deprecated since version 2.4, to be removed in 3.0. Use the {@link \Symfony\Component\Debug\DebugClassLoader} class instead. Checks that the class is actually declared in the included file. Methods useIncludePath(bool $useIncludePath) Turns on searching the include for class files. Allows easy loading of installed PEAR packages. from UniversalClassLoader bool getUseIncludePath() Can be used to check if the autoloader us

DebugLoggerInterface::getLogs()

array getLogs() Returns an array of logs. A log is an array with the following mandatory keys: timestamp, message, priority, and priorityName. It can also have an optional context key containing an array. Return Value array An array of logs

DebugLoggerInterface::countErrors()

int countErrors() Returns the number of errors. Return Value int The number of errors