ContainerBuilder::has()

bool has(string $id) Returns true if the given service is defined. Parameters string $id The service identifier Return Value bool true if the service is defined, false otherwise

Guess

class Guess Base class for guesses made by TypeGuesserInterface implementation. Each instance contains a confidence value about the correctness of the guess. Thus an instance with confidence HIGHCONFIDENCE is more likely to be correct than an instance with confidence LOWCONFIDENCE. Constants VERY_HIGH_CONFIDENCE Marks an instance with a value that is extremely likely to be correct. HIGH_CONFIDENCE Marks an instance with a value that is very likely to be correct. MEDIUM_CONFIDENCE Mar

ContainerBuilder::merge()

merge(ContainerBuilder $container) Merges a ContainerBuilder with the current ContainerBuilder configuration. Service definitions overrides the current defined ones. But for parameters, they are overridden by the current ones. It allows the parameters passed to the container constructor to have precedence over the loaded ones. $container = new ContainerBuilder(array('foo' => 'bar')); $loader = new LoaderXXX($container); $loader->load('resource_name'); $container->register('f

Bundle\SecurityBundle

Namespaces Symfony\Bundle\SecurityBundle\CommandSymfony\Bundle\SecurityBundle\DataCollectorSymfony\Bundle\SecurityBundle\DependencyInjectionSymfony\Bundle\SecurityBundle\EventListenerSymfony\Bundle\SecurityBundle\SecuritySymfony\Bundle\SecurityBundle\TemplatingSymfony\Bundle\SecurityBundle\Twig Classes SecurityBundle Bundle.

PdoSessionHandler::createTable()

createTable() Creates the table to store sessions which can be called once for setup. Session ID is saved in a column of maximum length 128 because that is enough even for a 512 bit configured session.hash_function like Whirlpool. Session data is saved in a BLOB. One could also use a shorter inlined varbinary column if one was sure the data fits into it. Exceptions PDOException When the table already exists DomainException When an unsupported PDO driver is used

NormalizationBuilder::before()

ExprBuilder|NormalizationBuilder before(Closure $closure = null) Registers a closure to run before the normalization or an expression builder to build it if null is provided. Parameters Closure $closure Return Value ExprBuilder|NormalizationBuilder

FormatterHelper::formatBlock()

string formatBlock(string|array $messages, string $style, bool $large = false) Formats a message as a block of text. Parameters string|array $messages The message to write in the block string $style The style to apply to the whole block bool $large Whether to return a large block Return Value string The formatter message

AbstractType::finishView()

finishView(FormView $view, FormInterface $form, array $options) Finishes the form view. This method gets called for each type in the hierarchy starting from the top most type. Type extensions can further modify the view. When this method is called, views of the form's children have already been built and finished and can be accessed. You should only implement such logic in this method that actually accesses child views. For everything else you are recommended to implement {@link buil

DefaultChoiceListFactory

class DefaultChoiceListFactory implements ChoiceListFactoryInterface Default implementation of {@link ChoiceListFactoryInterface}. Methods ChoiceListInterface createListFromChoices(array|Traversable $choices, null|callable $value = null) Creates a choice list for the given choices. ChoiceListInterface createListFromLoader(ChoiceLoaderInterface $loader, null|callable $value = null) Creates a choice list that is loaded with the given loader. ChoiceListView createView(ChoiceListIn

Component\Security\Core\User

Classes ChainUserProvider Chain User Provider. InMemoryUserProvider InMemoryUserProvider is a simple non persistent user provider. User User is the user implementation used by the in-memory user provider. UserChecker UserChecker checks the user account flags. Interfaces AdvancedUserInterface Adds extra features to a user class related to account status flags. EquatableInterface EquatableInterface used to test if two objects are equal in security and re-authentication co