public function Kernel::getBundles

Gets the registered bundle instances.

@api

Return value

array An array of registered bundle instances

Overrides KernelInterface::getBundles

3 calls to Kernel::getBundles()
Kernel::boot in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php
Boots the current kernel.
Kernel::isClassInActiveBundle in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php
Checks if a given class name belongs to an active bundle.
Kernel::shutdown in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php
Shutdowns the kernel.
1 method overrides Kernel::getBundles()
KernelForTest::getBundles in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/DataCollector/ConfigDataCollectorTest.php
Gets the registered bundle instances.

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php, line 213

Class

Kernel
The Kernel is the heart of the Symfony system.

Namespace

Symfony\Component\HttpKernel

Code

public function getBundles() {
  return $this->bundles;
}