DigestAuthenticationEntryPoint::getRealmName()

string getRealmName() Return Value string

DigestAuthenticationEntryPoint::start()

Response start(Request $request, AuthenticationException $authException = null) Returns a response that directs the user to authenticate. This is called when an anonymous request accesses a resource that requires authentication. The job of this method is to return some response that "helps" the user start into the authentication process. Examples: A) For a form login, you might redirect to the login page return new Response('/login'); B) For an API token authentication system, y

DigestAuthenticationEntryPoint

class DigestAuthenticationEntryPoint implements AuthenticationEntryPointInterface DigestAuthenticationEntryPoint starts an HTTP Digest authentication. Methods __construct($realmName, $secret, $nonceValiditySeconds = 300, LoggerInterface $logger = null) Response start(Request $request, AuthenticationException $authException = null) Returns a response that directs the user to authenticate. string getSecret() string getRealmName() Details _

DiffOperation deprecated

class DiffOperation extends TargetOperation deprecated since version 2.8, to be removed in 3.0. Use TargetOperation instead. Diff operation between two catalogues. The name of 'Diff' is misleading because the operation has nothing to do with diff: intersection = source ∩ target = {x: x ∈ source ∧ x ∈ target} all = intersection ∪ (target ∖ intersection) = target new = all ∖ source = {x: x ∈ target ∧ x ∉ source} obsolete = source ∖ all = source ∖ target = {x: x ∈ source ∧ x ∉ target} Meth

DialogHelper deprecated::setInputStream()

setInputStream(resource $stream) Sets the input stream to read from when interacting with the user. This is mainly useful for testing purpose. Parameters resource $stream The input stream

DialogHelper deprecated::select()

int|string|array select(OutputInterface $output, string|array $question, array $choices, bool|string $default = null, bool|int $attempts = false, string $errorMessage = 'Value "%s" is invalid', bool $multiselect = false) Asks the user to select a value. Parameters OutputInterface $output An Output instance string|array $question The question to ask array $choices List of choices to pick from bool|string $default The default answer if the user enters nothing bool|int $attempts M

DialogHelper deprecated::askHiddenResponseAndValidate()

string askHiddenResponseAndValidate(OutputInterface $output, string|array $question, callable $validator, int|false $attempts = false, bool $fallback = true) Asks for a value, hide and validates the response. The validator receives the data to validate. It must return the validated data when the data is valid and throw an exception otherwise. Parameters OutputInterface $output An Output instance string|array $question The question to ask callable $validator A PHP callback int|f

DialogHelper deprecated::askAndValidate()

mixed askAndValidate(OutputInterface $output, string|array $question, callable $validator, int|false $attempts = false, string $default = null, array $autocomplete = null) Asks for a value and validates the response. The validator receives the data to validate. It must return the validated data when the data is valid and throw an exception otherwise. Parameters OutputInterface $output An Output instance string|array $question The question to ask callable $validator A PHP callba

DialogHelper deprecated::askConfirmation()

bool askConfirmation(OutputInterface $output, string|array $question, bool $default = true) Asks a confirmation to the user. The question will be asked until the user answers by nothing, yes, or no. Parameters OutputInterface $output An Output instance string|array $question The question to ask bool $default The default answer if the user enters nothing Return Value bool true if the user has confirmed, false otherwise

DialogHelper deprecated::getName()

string getName() Returns the canonical name of this helper. Return Value string The canonical name