class Bundle implements BundleInterface
An implementation of BundleInterface that adds a few conventions for DependencyInjection extensions and Console commands.
Traits
ContainerAwareTrait | ContainerAware trait. |
Methods
setContainer(ContainerInterface $container = null) Sets the container. | from ContainerAwareTrait | |
boot() Boots the Bundle. | ||
shutdown() Shutdowns the Bundle. | ||
build(ContainerBuilder $container) Builds the bundle. | ||
ExtensionInterface|null | getContainerExtension() Returns the bundle's container extension. | |
string | getNamespace() Gets the Bundle namespace. | |
string | getPath() Gets the Bundle directory path. | |
string | getParent() Returns the bundle parent name. | |
string | getName() Returns the bundle name (the class short name). | |
registerCommands(Application $application) Finds and registers Commands. |
Details
setContainer(ContainerInterface $container = null)
Sets the container.
boot()
Boots the Bundle.
shutdown()
Shutdowns the Bundle.
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, ...
ExtensionInterface|null getContainerExtension()
Returns the bundle's container extension.
string getNamespace()
Gets the Bundle namespace.
string getPath()
Gets the Bundle directory path.
string getParent()
Returns the bundle parent name.
final string getName()
Returns the bundle name (the class short name).
registerCommands(Application $application)
Finds and registers Commands.
Override this method if your bundle commands do not follow the conventions:
- Commands are in the 'Command' sub-directory
- Commands extend Symfony\Component\Console\Command\Command
Please login to continue.