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

PersistentTokenInterface::getTokenValue()

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

EntryManager::remove()

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

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

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

ExecutionContext::setGroup()

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

Token::isHash()

bool isHash() Return Value bool

TokenInterface::isAuthenticated()

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

Route::compile()

CompiledRoute compile() Compiles the route. Return Value CompiledRoute A CompiledRoute instance Exceptions LogicException If the Route cannot be compiled because the path or host pattern is invalid See also RouteCompiler which is responsible for the compilation process

FormConfigBuilderInterface::setFormFactory()

setFormFactory(FormFactoryInterface $formFactory) Sets the form factory used for creating new forms. Parameters FormFactoryInterface $formFactory The form factory