public function Bundle::getParent

Returns the bundle parent name.

@api

Return value

string The Bundle parent name it overrides or null if no parent

Overrides BundleInterface::getParent

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Bundle/Bundle.php, line 139

Class

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

Namespace

Symfony\Component\HttpKernel\Bundle

Code

public function getParent() {
  return null;
}