* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel\Bundle; use Symfony\Component\DependencyInjection\ContainerAwareInterface; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Extension\ExtensionInterface; /** * BundleInterface. * * @author Fabien Potencier */ interface BundleInterface extends ContainerAwareInterface { /** * Boots the Bundle. */ public function boot(); /** * Shutdowns the Bundle. */ public function shutdown(); /** * Builds the bundle. * * It is only ever called once when the cache is empty. */ public function build(ContainerBuilder $container); /** * Returns the container extension that should be implicitly loaded. * * @return ExtensionInterface|null The default extension or null if there is none */ public function getContainerExtension(); /** * Returns the bundle name that this bundle overrides. * * Despite its name, this method does not imply any parent/child relationship * between the bundles, just a way to extend and override an existing * bundle. * * @return string The Bundle name it overrides or null if no parent * * @deprecated This method is deprecated as of 3.4 and will be removed in 4.0. */ public function getParent(); /** * Returns the bundle name (the class short name). * * @return string The Bundle name */ public function getName(); /** * Gets the Bundle namespace. * * @return string The Bundle namespace */ public function getNamespace(); /** * Gets the Bundle directory path. * * The path should always be returned as a Unix path (with /). * * @return string The Bundle absolute path */ public function getPath(); } __halt_compiler();----SIGNATURE:----bv9uL2o8GqYQfZ4rXPldHaFhWM/53Ncpbqmyt8YYyuNMeLLM6SHWKUmLdimrBEeZHVs/ICKSl7DEHWtSnyvPGHG8KndmsT68KwV1LmcVJ3QOW131NN+TtNwuda+KBX6/ST7jlhVC82kBq5GBreyQR+gQU3qlpHBSywGGKdewJXqIlTfiIkYGVqG2kwXvU7WpYSorIGq0S+YVEubpgVBKFHolz9sP8oztzTXA5M7s/EuN6mohulS7dzMg4j7uHg3io/y3AyCmN1l1UbaKqjBb7x/K6zT5OOU3rnLFNPr3yS+jtIVkW4I27uW73cCE+ifiFxPGfUexBLjdCuXjjujWX7WTwWY5Knr0oAWGhytrZO9SWDNQvVbzJuFO47UCSk9C1f983Ds1rTH1mhrL/HEuosbVlAs7scqkYm8nnTA+xyWv/FhK6apcCNo2mSgHGUQXi3H0hZu8HzAlKOh0IvwpWkaGqFJuQnxezOD1ENWANk2lhLSIkS80NIi7PQ+NDHv8oamRnlanr465GqlikLfiCRhgAGdEVqbAjFX1ADqebqV9seUIRf1h6WXIsSQhNX58ja5Voeh33AFUpxMxP9qwA5JrBH3MPToQopPAhJB6w+s0RlEpAEk4PP4+b2N8sJKZBDnB/hvzulbLwCD6x52M9vhUuYUsSbQYU/5TIg0i5WA=----ATTACHMENT:----NDAzOTIzMDYzODg5ODE3OSAxMzk4ODQ4NjY0MTIzNzE2IDg2NjEzMzU2MTg3MTA3ODE=