FieldEntry::getField()

string getField() Returns the field used for this entry. Return Value string

MongoDbSessionHandler::write()

write($sessionId, $data) {@inheritdoc} Parameters $sessionId $data

TokenInterface::isAuthenticated()

bool isAuthenticated() Returns whether the user is authenticated or not. Return Value bool true if the token has been authenticated, false otherwise

Token::isHash()

bool isHash() Return Value bool

ExecutionContext::setGroup()

setGroup(string|null $group) Sets the currently validated group. Parameters string|null $group The validated group

QuestionHelper::ask()

string ask(InputInterface $input, OutputInterface $output, Question $question) Asks a question to the user. Parameters InputInterface $input An InputInterface instance OutputInterface $output An OutputInterface instance Question $question The question to ask Return Value string The user answer Exceptions RuntimeException If there is no data to read in the input stream

DumpDataCollectorPass

class DumpDataCollectorPass implements CompilerPassInterface Registers the file link format for the {@link \Symfony\Component\HttpKernel\DataCollector\DumpDataCollector}. 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

EntryManager::remove()

remove(Entry $entry) Removes an entry from the Ldap server. Parameters Entry $entry

PersistentTokenInterface::getTokenValue()

string getTokenValue() Returns the token value. Return Value string

ExecutionContextInterface::getValidator()

ValidatorInterface getValidator() Returns the validator. Useful if you want to validate additional constraints: public function validate($value, Constraint $constraint) { $validator = $this->context->getValidator(); $violations = $validator->validateValue($value, new Length(array('min' => 3))); if (count($violations) > 0) { // ... } } Return Value ValidatorInterface