RegistryInterface

interface RegistryInterface implements ManagerRegistry References Doctrine connections and entity managers. Methods string getDefaultEntityManagerName() Gets the default entity manager name. EntityManager getEntityManager(string $name = null) Gets a named entity manager. array getEntityManagers() Gets an array of all registered entity managers. EntityManager resetEntityManager(string $name = null) Resets a named entity manager. string getEntityNamespace(string $alias)

CompilerPassInterface

interface CompilerPassInterface Interface that must be implemented by compilation passes. 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

Form::isSubmitted()

bool isSubmitted() Returns whether the form is submitted. Return Value bool true if the form is submitted, false otherwise

DOMCaster::castImplementation()

static castImplementation($dom, array $a, Stub $stub, $isNested) Parameters $dom array $a Stub $stub $isNested

Configuration

class Configuration implements ConfigurationInterface DebugExtension configuration structure. Methods TreeBuilder getConfigTreeBuilder() Generates the configuration tree builder. Details TreeBuilder getConfigTreeBuilder() Generates the configuration tree builder. Return Value TreeBuilder The tree builder

DebugBundle::boot()

boot() Boots the Bundle.

DebugBundle::build()

build(ContainerBuilder $container) Builds the bundle. It is only ever called once when the cache is empty. This method can be overridden to register compilation passes, other extensions, ... Parameters ContainerBuilder $container A ContainerBuilder instance

DebugExtension::load()

load(array $configs, ContainerBuilder $container) Loads a specific configuration. Parameters array $configs An array of configuration values ContainerBuilder $container A ContainerBuilder instance Exceptions InvalidArgumentException When provided tag is not defined in this extension

FormConfigBuilder::setType()

FormConfigBuilderInterface setType(ResolvedFormTypeInterface $type) Set the types. Parameters ResolvedFormTypeInterface $type The type of the form Return Value FormConfigBuilderInterface The configuration object

PropertyAccessorBuilder

class PropertyAccessorBuilder A configurable builder to create a PropertyAccessor. Methods PropertyAccessorBuilder enableMagicCall() Enables the use of "__call" by the PropertyAccessor. PropertyAccessorBuilder disableMagicCall() Disables the use of "__call" by the PropertyAccessor. bool isMagicCallEnabled() PropertyAccessorBuilder enableExceptionOnInvalidIndex() Enables exceptions when reading a non-existing index. PropertyAccessorBuilder disableExceptionOnInvalidInd