You are here

public function ObjectManager::merge in Plug 7

Merges the state of a detached object into the persistence context of this ObjectManager and returns the managed copy of the object. The object passed to merge will not become associated/managed with this ObjectManager.

Parameters

object $object:

Return value

object

1 method overrides ObjectManager::merge()
ObjectManagerDecorator::merge in lib/doctrine/common/lib/Doctrine/Common/Persistence/ObjectManagerDecorator.php
Merges the state of a detached object into the persistence context of this ObjectManager and returns the managed copy of the object. The object passed to merge will not become associated/managed with this ObjectManager.

File

lib/doctrine/common/lib/Doctrine/Common/Persistence/ObjectManager.php, line 78

Class

ObjectManager
Contract for a Doctrine persistence layer ObjectManager class to implement.

Namespace

Doctrine\Common\Persistence

Code

public function merge($object);