DigestAuthenticationEntryPoint::getSecret()

string getSecret() Return Value string

DigestAuthenticationEntryPoint::getRealmName()

string getRealmName() Return Value string

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::getName()

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

DialogHelper deprecated::getInputStream()

resource|null getInputStream() Returns the helper's input stream. Return Value resource|null The input stream or null if the default STDIN is used

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::askHiddenResponse()

string askHiddenResponse(OutputInterface $output, string|array $question, bool $fallback = true) Asks a question to the user, the response is hidden. Parameters OutputInterface $output An Output instance string|array $question The question bool $fallback In case the response can not be hidden, whether to fallback on non-hidden question or not Return Value string The answer Exceptions RuntimeException In case the fallback is deactivated and the response can not be hidden