Returns the bundle name (the class short name).
@api
string The Bundle name
Overrides BundleInterface::getName
public final function getName() {
if (null !== $this->name) {
return $this->name;
}
$name = get_class($this);
$pos = strrpos($name, '\\');
return $this->name = false === $pos ? $name : substr($name, $pos + 1);
}