public function ObjectManagerDecorator::detach in Plug 7
Detaches an object from the ObjectManager, causing a managed object to become detached. Unflushed changes made to the object if any (including removal of the object), will not be synchronized to the database. Objects which previously referenced the detached object will continue to reference it.
Parameters
object $object The object to detach.:
Return value
void
Overrides ObjectManager::detach
File
- lib/
doctrine/ common/ lib/ Doctrine/ Common/ Persistence/ ObjectManagerDecorator.php, line 80
Class
- ObjectManagerDecorator
- Base class to simplify ObjectManager decorators
Namespace
Doctrine\Common\PersistenceCode
public function detach($object) {
return $this->wrapped
->detach($object);
}