You are here

public function AbstractManagerRegistry::getDefaultManagerName in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/doctrine/common/lib/Doctrine/Common/Persistence/AbstractManagerRegistry.php \Doctrine\Common\Persistence\AbstractManagerRegistry::getDefaultManagerName()

Gets the default object manager name.

Return value

string The default object manager name.

Overrides ManagerRegistry::getDefaultManagerName

File

vendor/doctrine/common/lib/Doctrine/Common/Persistence/AbstractManagerRegistry.php, line 163

Class

AbstractManagerRegistry
Abstract implementation of the ManagerRegistry contract.

Namespace

Doctrine\Common\Persistence

Code

public function getDefaultManagerName() {
  return $this->defaultManager;
}