HttpDigestFactory::getPosition()

string getPosition() Defines the position at which the provider is called. Possible values: preauth, form, http, and rememberme. Return Value string

HttpDigestFactory::getKey()

string getKey() Defines the configuration key used to reference the provider in the firewall configuration. Return Value string

HttpDigestFactory::create()

array create(ContainerBuilder $container, string $id, array $config, string $userProvider, string $defaultEntryPoint) Configures the container services required to use the authentication listener. Parameters ContainerBuilder $container string $id The unique id of the firewall array $config The options array for the listener string $userProvider The service id of the user provider string $defaultEntryPoint Return Value array containing three values: - the provider id - the lis

HttpDigestFactory::addConfiguration()

addConfiguration(NodeDefinition $node) Parameters NodeDefinition $node

HttpDigestFactory

class HttpDigestFactory implements SecurityFactoryInterface HttpDigestFactory creates services for HTTP digest authentication. Methods array create(ContainerBuilder $container, string $id, array $config, string $userProvider, string $defaultEntryPoint) Configures the container services required to use the authentication listener. string getPosition() Defines the position at which the provider is called. string getKey() Defines the configuration key used to reference the provide

HttpCache::terminate()

terminate(Request $request, Response $response) Terminates a request/response cycle. Should be called after sending the response and before shutting down the kernel. Parameters Request $request A Request instance Response $response A Response instance

HttpCache::handle()

Response handle(Request $request, int $type = HttpKernelInterface::MASTER_REQUEST, bool $catch = true) Handles a Request to convert it to a Response. When $catch is true, the implementation must catch all exceptions and do its best to convert them to a Response instance. Parameters Request $request A Request instance int $type The type of the request (one of HttpKernelInterface::MASTERREQUEST or HttpKernelInterface::SUBREQUEST) bool $catch Whether to catch exceptions or not Re

HttpCache::getTraces()

array getTraces() Returns an array of events that took place during processing of the last request. Return Value array An array of events

HttpCache::getSurrogate()

SurrogateInterface getSurrogate() Gets the Surrogate instance. Return Value SurrogateInterface A Surrogate instance Exceptions LogicException

HttpCache::getStore()

StoreInterface getStore() Gets the current store. Return Value StoreInterface $store A StoreInterface instance