public function Kernel::getBundles in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-kernel/Kernel.php \Symfony\Component\HttpKernel\Kernel::getBundles()
Gets the registered bundle instances.
Return value
BundleInterface[] An array of registered bundle instances
Overrides KernelInterface::getBundles
3 calls to Kernel::getBundles()
- Kernel::boot in vendor/
symfony/ http-kernel/ Kernel.php - Boots the current kernel.
- Kernel::isClassInActiveBundle in vendor/
symfony/ http-kernel/ Kernel.php - Kernel::shutdown in vendor/
symfony/ http-kernel/ Kernel.php - Shutdowns the kernel.
1 method overrides Kernel::getBundles()
- KernelForTest::getBundles in vendor/
symfony/ http-kernel/ Tests/ DataCollector/ ConfigDataCollectorTest.php - Gets the registered bundle instances.
File
- vendor/
symfony/ http-kernel/ Kernel.php, line 200
Class
- Kernel
- The Kernel is the heart of the Symfony system.
Namespace
Symfony\Component\HttpKernelCode
public function getBundles() {
return $this->bundles;
}