abstract class Bundle implements BundleInterface

An implementation of BundleInterface that adds a few conventions for DependencyInjection extensions and Console commands.

Traits

ContainerAware trait.

Properties

protected ContainerInterface $container from ContainerAwareTrait
protected $name
protected $extension
protected $path

Methods

setContainer(ContainerInterface $container = null)

No description

boot()

Boots the Bundle.

shutdown()

Shutdowns the Bundle.

build(ContainerBuilder $container)

Builds the bundle.

getContainerExtension()

Returns the bundle's container extension.

string
getNamespace()

Gets the Bundle namespace.

string
getPath()

Gets the Bundle directory path.

string
getName()

Returns the bundle name (the class short name).

registerCommands(Application $application)

No description

string
getContainerExtensionClass()

Returns the bundle's container extension class.

createContainerExtension()

Creates the bundle's container extension.

Details

setContainer(ContainerInterface $container = null)

Parameters

ContainerInterface $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.

Parameters

ContainerBuilder $container

ExtensionInterface|null getContainerExtension()

Returns the bundle's container extension.

Return Value

ExtensionInterface|null The default extension or null if there is none

Exceptions

LogicException

string getNamespace()

Gets the Bundle namespace.

Return Value

string The Bundle namespace

string getPath()

Gets the Bundle directory path.

The path should always be returned as a Unix path (with /).

Return Value

string The Bundle absolute path

final string getName()

Returns the bundle name (the class short name).

Return Value

string The Bundle name

registerCommands(Application $application)

Parameters

Application $application

protected string getContainerExtensionClass()

Returns the bundle's container extension class.

Return Value

string

protected ExtensionInterface|null createContainerExtension()

Creates the bundle's container extension.

Return Value

ExtensionInterface|null